mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 09:06:54 +08:00
17 lines
237 B
Go
Executable File
17 lines
237 B
Go
Executable File
package cache
|
|
|
|
import (
|
|
"github.com/luscis/openlan/pkg/config"
|
|
)
|
|
|
|
func Init(cfg *config.Perf) {
|
|
Point.Init(cfg.Point)
|
|
Link.Init(cfg.Link)
|
|
Neighbor.Init(cfg.Neighbor)
|
|
Online.Init(cfg.OnLine)
|
|
User.Init(cfg.User)
|
|
}
|
|
|
|
func Reload() {
|
|
}
|