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