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