package routes import ( "net/http" "zestack.dev/slim" ) func showNewProject(c slim.Context) error { return c.Render(http.StatusOK, "new_project.gohtml", slim.Map{}) }