initial commit example

This commit is contained in:
2023-03-29 18:54:45 -05:00
commit f1033c67ac
18 changed files with 4433 additions and 0 deletions

7
model/admin.go Normal file
View File

@@ -0,0 +1,7 @@
package model
// Admin example
type Admin struct {
ID int `json:"id" example:"1"`
Name string `json:"name" example:"admin name"`
}