Initial MVP: Go + templ Tolino-optimized ebook library scaffold

This commit is contained in:
Arne
2026-08-06 06:52:41 +02:00
parent bf077c0cf6
commit 8d499c28a7
11 changed files with 440 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package library
type Book struct {
ID string
Title string
Filename string
Path string
Format string
}