14 lines
306 B
Go
14 lines
306 B
Go
package routes
|
|
|
|
import "git.artlef.fr/PersonalLibraryManager/internal/appcontext"
|
|
|
|
type bookPutUpdate struct {
|
|
Title string `json:"title" binding:"required,max=300"`
|
|
Author string `json:"author" binding:"max=100"`
|
|
CoverID uint `json:"coverId"`
|
|
}
|
|
|
|
func PutBookHandler(ac appcontext.AppContext) {
|
|
|
|
}
|