Add load tests.

This commit is contained in:
Florian THIERRY
2025-10-09 14:32:00 +02:00
parent 193fcc1596
commit 13d811faae
27 changed files with 4 additions and 586 deletions

View File

@@ -0,0 +1,15 @@
export interface Catalog {
id: string;
name: string;
}
export interface Item {
id: string;
name: string;
isShared: boolean;
}
export interface Marketplace {
catalogs: Catalog[];
sharedItems: Item[]
}