feat: initial commit

This commit is contained in:
Zhiqiang Li
2023-03-24 15:12:01 +08:00
commit e025a0f9e0
13 changed files with 409 additions and 0 deletions

10
apis/types.go Normal file
View File

@@ -0,0 +1,10 @@
package apis
type ApiResponse struct {
Error ErrorDescription `json:"error"`
}
type ErrorDescription struct {
Code string `json:"code"`
Message string `json:"message"`
}