2024-12-10 13:12:08 -05:00
|
|
|
package index
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
|
"github.com/onsonr/sonr/pkg/common/response"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func Handler(c echo.Context) error {
|
|
|
|
|
if isExpired(c) {
|
|
|
|
|
return response.TemplEcho(c, ReturningView())
|
|
|
|
|
}
|
|
|
|
|
return response.TemplEcho(c, InitialView())
|
|
|
|
|
}
|