Create timer function to initialise card database from filesystem (#14)

- Create a new datasource for an in-memory sqlite database
- Create a setup function to initialise the card database

#13

Reviewed-on: https://gitea.vylpes.xyz/External/card-drop/pulls/14
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
Ethan Lane 2023-09-03 17:26:45 +01:00 committed by Vylpes
parent c2c2998fe8
commit 51d97bacd5
17 changed files with 813 additions and 28 deletions

View file

@ -0,0 +1,6 @@
export enum CardRarity {
Bronze,
Silver,
Gold,
Legendary,
}