mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 17:17:13 +08:00
12 lines
170 B
Go
12 lines
170 B
Go
package internal
|
|
|
|
type NV struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type KV struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|