Files
bibliomane/internal/model/author.go
Arthur Lefebvre 1bb841332c Open Library search API
If nothing is found on the server, returns results from open library
API. Clicking on a book imports it.
2025-12-30 18:13:11 +01:00

11 lines
139 B
Go

package model
import "gorm.io/gorm"
type Author struct {
gorm.Model
Name string
Description string
OpenLibraryId string
}