Brijesh's Git Server — k3yst0n3 @ 90706b0412aaed46082b4bb5e78238a3f1630d06

server/routes.go (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
package main

import (
	"k3yst0n3/handlers"

	"github.com/labstack/echo/v4"
)

func setupRoutes(e *echo.Echo) {
	e.GET("/health-check", handlers.HealthCheckHandler)

	e.GET("/facts", handlers.ListFacts)

	e.POST("/fact", handlers.CreateFact)
}