mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
14 lines
173 B
Go
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),
|
|
}
|