feat: remove pkg dir

This commit is contained in:
Zhiqiang Li
2023-03-30 17:01:35 +08:00
parent 51b9233da0
commit 1e1d5eaf1b
6 changed files with 3 additions and 3 deletions

10
util/types.go Normal file
View File

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