first commit
This commit is contained in:
@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user