first commit

This commit is contained in:
2025-07-25 01:44:51 +03:00
parent d4d7add48c
commit 76151d2ebc

View File

@ -1,17 +1,18 @@
package main
import (
"fmt"
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")
fmt.Println("test")
}