initial commit

This commit is contained in:
2024-05-08 18:20:33 -05:00
commit 33e7bf3182
4 changed files with 56 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package stdmodels
type StandardMessage struct {
Message string `json:"message"`
}
type StandardError struct {
Message string `json:"message"`
Status int `json:"status"`
Description []string `json:"description"`
}