FlatLibrary provider (#127)

This commit is contained in:
DecDuck
2025-07-06 12:44:41 +10:00
committed by GitHub
parent 73c27f0984
commit 706f2aac83
11 changed files with 233 additions and 75 deletions

View File

@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "LibraryBackend" ADD VALUE 'FlatFilesystem';

View File

@ -16,6 +16,7 @@ enum Platform {
enum LibraryBackend {
Filesystem
FlatFilesystem
}
model Library {
@ -25,5 +26,5 @@ model Library {
backend LibraryBackend
options Json
games Game[]
games Game[]
}