mirror of
https://github.com/Neur0toxine/demo-web-service-go.git
synced 2024-12-05 02:56:03 +03:00
13 lines
175 B
Go
13 lines
175 B
Go
package app
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// Router controls the routes
|
|
func Router() (r *gin.Engine) {
|
|
r = gin.New()
|
|
r.GET("/authors", AuthorsHandler)
|
|
return
|
|
}
|