add middleware for authentication and captcha, implement initial API routes for user, post, label, and page

This commit is contained in:
2025-07-18 03:26:15 +08:00
parent 70b653a88b
commit 99a3f80e12
40 changed files with 4545 additions and 21 deletions

View File

@ -1,3 +1,10 @@
package main
func main() {}
import "github.com/snowykami/neo-blog/internal/router"
func main() {
err := router.Run()
if err != nil {
panic(err)
}
}