2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 23:27:17 +08:00
Files
panel/internal/setting.go
2023-12-14 02:09:33 +08:00

8 lines
149 B
Go

package internal
type Setting interface {
Get(key string, defaultValue ...string) string
Set(key, value string) error
Delete(key string) error
}