14 lines
188 B
Go
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
|
|
}
|