implement contact us

This commit is contained in:
2024-10-24 10:15:45 -05:00
parent 13568d00b5
commit b112c726bb
7 changed files with 99 additions and 2 deletions

View File

@@ -39,6 +39,7 @@ func main() {
mux.Handle(core.RandomSvgInterface, &handler)
mux.Handle(core.RefreshToken, &handler)
mux.Handle(core.ResetNKode, &handler)
mux.Handle(core.ContactUs, &handler)
fmt.Println("Running on localhost:8080...")
log.Fatal(http.ListenAndServe("localhost:8080", corsMiddleware(mux)))
}