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