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