mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 17:43:53 +01:00
14 lines
220 B
Go
14 lines
220 B
Go
package agent
|
|
|
|
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),
|
|
}
|
|
}
|