feat: runtime 增加删除功能

This commit is contained in:
zhengkunwang223
2023-03-31 14:02:28 +08:00
committed by zhengkunwang223
parent 64a954df53
commit 22d9bdacf6
19 changed files with 217 additions and 43 deletions

View File

@@ -1,10 +1,10 @@
package constant
const (
ResourceLocal = "Local"
ResourceAppstore = "Appstore"
ResourceLocal = "local"
ResourceAppstore = "appstore"
RuntimeNormal = "Normal"
RuntimeBuildSuccess = "BuildSuccess"
RuntimeBuildFailed = "BuildFailed"
RuntimeNormal = "normal"
RuntimeError = "error"
RuntimeBuildIng = "building"
)