demo-web-service-go/handlers.go
2021-09-14 12:24:35 +03:00

13 lines
222 B
Go

package main
import (
"net/http"
"github.com/Neur0toxine/demo-web-service-go/data/repository"
"github.com/gin-gonic/gin"
)
func AuthorsHandler(c *gin.Context) {
c.IndentedJSON(http.StatusOK, repository.Authors())
}