mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
12 lines
195 B
Go
12 lines
195 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/profile"
|
|
)
|
|
|
|
func Profile(c echo.Context) error {
|
|
return echoResponse(c, profile.View(c))
|
|
}
|