Added card types
All checks were successful
Build Docker image / build (push) Successful in 2m5s
Build Docker image / deploy (push) Successful in 4s
Build Docker image / verify (push) Successful in 46s

This commit is contained in:
Roman Krček
2025-08-11 18:30:07 +02:00
parent 1a2329b6c1
commit a9dc5888e6
17 changed files with 484 additions and 382 deletions

5
src/lib/cards/index.ts Normal file
View File

@@ -0,0 +1,5 @@
import { ESNCardAnniversary } from './esncard_anniversary';
import { ESNCard2026 } from './esncard_2026';
import type { Card } from './types';
export const cardTypes: Card[] = [ESNCardAnniversary, ESNCard2026];