mirror of
https://github.com/wisplite/raster.git
synced 2026-05-01 06:32:44 -05:00
9 lines
146 B
Go
9 lines
146 B
Go
package routes
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func RegisterRoutes(r *gin.Engine) {
|
|
rg := r.Group("/api")
|
|
RegisterAlbumRoutes(rg)
|
|
}
|