setup done

This commit is contained in:
Beto
2024-03-03 19:55:13 -06:00
parent 89b7c07023
commit 4327e9fc8d
6 changed files with 76 additions and 0 deletions

17
cmd/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"fmt"
"gitea.sitodosi.com/betology/got/handler"
"github.com/labstack/echo"
)
func main() {
app := echo.New()
userHandler := handler.UserHandler{}
app.GET("/user", userHandler.HandlerUserShow())
app.Start(:3000)
}