Initial commit

This commit is contained in:
2025-09-06 21:35:45 -04:00
commit b02525e28a
32 changed files with 1478 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package controllers
import (
"addrss/pkg/router"
)
type Guestbook struct{}
type guestbookError struct {
Fields []string `json:"fields"`
}
func (g Guestbook) AddRoutes() {
router.AddPost("/guestbook", signGuestbook).Anonymous()
}
func signGuestbook(ctx *router.Context) {
//gb := ctx.Request.Model.(repo.Guestbook)
ctx.Response.NoContent()
}