watchtogether/backend/internal/server/routes.go

15 lines
258 B
Go

package server
import "net/http"
const (
contentTypeHeaderKey string = "Content-Type"
appJSONContentTypeHeaderVal string = "application/json",
)
func (s *Server) routes() {
s.router.Handle("/", func(http.ResponseWriter, *http.Response) {
})
}