Merge pull request #673 from imguoguo/add-autostart-upstream

feat: add autostart feature
This commit is contained in:
wenjie
2025-12-23 14:59:28 +08:00
committed by GitHub
8 changed files with 348 additions and 1 deletions

View File

@@ -55,6 +55,15 @@ type DeleteScriptReq struct {
Name string `validate:"required"`
}
// autostart
type GetAutostartRsp struct {
Files []string `json:"files"`
}
type UploadAutostartReq struct {
Content string `json:"content"`
}
type GetVirtualDeviceRsp struct {
Network bool `json:"network"`
Media bool `json:"media"`