13 lines
197 B
Go
13 lines
197 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func (c *Controller) EndRoute(ctx echo.Context) error {
|
|
os.Exit(0)
|
|
return ctx.HTML(http.StatusOK, "Tschüss")
|
|
}
|