mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
14 lines
146 B
Go
Executable File
14 lines
146 B
Go
Executable File
package config
|
|
|
|
type manager struct {
|
|
Switch *Switch
|
|
}
|
|
|
|
var Manager = manager{
|
|
Switch: &Switch{},
|
|
}
|
|
|
|
func Reload() {
|
|
Manager.Switch.Reload()
|
|
}
|