feat: first commit

This commit is contained in:
2025-07-25 01:40:34 +03:00
parent 791042057f
commit 96437cafb2
20 changed files with 1698 additions and 22 deletions

17
cmd/api/main.go Normal file
View File

@ -0,0 +1,17 @@
package main
import (
todo_api "git.logidex.ru/fakz9/logidex-id/internal/api/todo/handler"
user_api "git.logidex.ru/fakz9/logidex-id/internal/api/user/handler"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
todo_api.RegisterApp(app)
user_api.RegisterApp(app)
app.Listen(":8080")
}