mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
12 lines
190 B
Go
12 lines
190 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/login"
|
|
)
|
|
|
|
func Login(c echo.Context) error {
|
|
return echoResponse(c, login.Modal(c))
|
|
}
|