mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
12 lines
199 B
Go
12 lines
199 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/register"
|
|
)
|
|
|
|
func Register(c echo.Context) error {
|
|
return echoResponse(c, register.Modal(c))
|
|
}
|