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

15
controller/controller.go Normal file
View File

@@ -0,0 +1,15 @@
package controller
// Controller example
type Controller struct {
}
// NewController example
func NewController() *Controller {
return &Controller{}
}
// Message example
type Message struct {
Message string `json:"message" example:"message"`
}