mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 17:17:13 +08:00
8 lines
149 B
Go
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
|
|
}
|