Files
sonr/pkg/nebula/pages/grant.go
T

12 lines
193 B
Go
Raw Normal View History

2024-10-01 14:42:11 -04:00
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))
}