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