Initial Commit

This commit is contained in:
2021-08-21 01:19:49 -07:00
commit 407a6cb3d7
26 changed files with 2936 additions and 0 deletions

22
internal/types/types.go Normal file
View File

@@ -0,0 +1,22 @@
package types
type ReqDataFwUpgrade struct {
Type int
Files []string
}
type Response struct {
Value interface{} `json:"value,omitempty"`
Message string `json:"msg,omitempty"`
Error bool `json:"error"`
}
type Request struct {
Type string `json:"type"`
Data interface{} `json:"data,omitempty"`
}
type ReqDataNotify struct {
Title string
Body string
}