9 lines
153 B
Go
9 lines
153 B
Go
package user
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Register(r gin.IRouter, ctl *Controller) {
|
|
g := r.Group("/authors")
|
|
g.GET("", ctl.ListAuthors)
|
|
}
|