add audio support, trying to manage MSD device
This commit is contained in:
17
http/reqrsp/nanokvm.go
Normal file
17
http/reqrsp/nanokvm.go
Normal file
@@ -0,0 +1,17 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user