Basic search and display working
This commit is contained in:
parent
17cb7765c1
commit
c64226ffb9
12 changed files with 325 additions and 65 deletions
23
upload/database.go
Normal file
23
upload/database.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
package main
|
||||
|
||||
type Book struct {
|
||||
Title string
|
||||
Author []string
|
||||
Contributor string
|
||||
Publisher string
|
||||
Description string
|
||||
Subject []string
|
||||
Date string
|
||||
Lang []string
|
||||
Type string
|
||||
Format string
|
||||
Source string
|
||||
Relation string
|
||||
Coverage string
|
||||
Rights string
|
||||
Meta string
|
||||
Path string
|
||||
Cover string
|
||||
CoverSmall string
|
||||
Keywords []string
|
||||
}
|
Reference in a new issue