mirror of
https://github.com/openziti/zrok.git
synced 2025-06-12 21:06:41 +02:00
14 lines
221 B
Go
14 lines
221 B
Go
package daemon
|
|
|
|
type Daemon struct {
|
|
shares map[string]*share
|
|
accesses map[string]*access
|
|
}
|
|
|
|
func NewDaemon() *Daemon {
|
|
return &Daemon{
|
|
shares: make(map[string]*share),
|
|
accesses: make(map[string]*access),
|
|
}
|
|
}
|