Files
testing-go-example/internal/models/book.go

8 lines
125 B
Go

package models
type Book struct {
ID string `json:"id"`
Title string `json:"title"`
Author string `json:"author"`
}