Initial commit

This commit is contained in:
2022-08-05 23:44:21 +02:00
commit aa7a98f984
7 changed files with 458 additions and 0 deletions

7
common/types.go Normal file
View File

@@ -0,0 +1,7 @@
package common
type Response struct {
Status string
Code string `json:"omitempty"`
Message string `json:"omitempty"`
}