initial server implementation
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package public
|
||||
|
||||
import "github.com/gofiber/fiber/v2"
|
||||
|
||||
func RegisterRoutes(app *fiber.App) {
|
||||
app.Get("/", func(ctx *fiber.Ctx) error {
|
||||
return ctx.Send([]byte("It's working! It's working!"))
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user