This repository has been archived on 2025-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
miniauthold/pkg/web/web.go
2025-03-12 15:28:25 +01:00

14 lines
188 B
Go

package web
import "github.com/gin-gonic/gin"
type Web struct{}
func NewWeb() Web {
w := Web{}
return w
}
func (w Web) RegisterRoutes(routing *gin.RouterGroup) error {
return nil
}