Files
sonr/nebula/components/pay/route.go
T

11 lines
164 B
Go
Raw Normal View History

package pay
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/ctx"
)
func Route(c echo.Context) error {
return ctx.RenderTempl(c, nil)
}