Files
extrovert/config/routes.go
Gustavo "Guz" L. de Mello 2686a045fd chore: initial setup
2024-06-24 11:50:06 -03:00

19 lines
306 B
Go

package config
import (
"net/http"
"extrovert/api"
"extrovert/internals"
"extrovert/pages"
)
var ROUTES = []internals.Page{
{Path: "index.html", Component: pages.Index()},
}
func APIROUTES(mux *http.ServeMux) {
mux.HandleFunc("/robots.txt", api.RobotsTxt)
mux.HandleFunc("/ai.txt", api.AiTxt)
}