Skip to content

Instantly share code, notes, and snippets.

View austinhallett's full-sized avatar

Austin Hallett austinhallett

View GitHub Profile
@goodnessuc
goodnessuc / controller.go
Created November 8, 2022 11:46
Updates to LogRocket's Gin Gonic tutorial article
package controllers
import (
"Go-Tutorials/models"
"github.com/gin-gonic/gin"
"net/http"
)
type CreateBookInput struct {
Title string `json:"title" binding:"required"`