Files
openlan/pkg/cache/qos.go
2024-03-28 11:45:49 +08:00

14 lines
173 B
Go

package cache
import (
"github.com/luscis/openlan/pkg/libol"
)
type qos struct {
QosConfig *libol.SafeStrMap
}
var pos = &qos{
QosConfig: libol.NewSafeStrMap(1024),
}