18 lines
262 B
Go
18 lines
262 B
Go
package reqrsp
|
|
|
|
const MsgSuccess = "success"
|
|
|
|
type NanoKVMRsp struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Data any `json:"data"`
|
|
}
|
|
|
|
type FilesRsp struct {
|
|
Files []string `json:"files"`
|
|
}
|
|
|
|
type FileRsp struct {
|
|
File string `json:"file"`
|
|
}
|