Add k6 tests

This commit is contained in:
Florian THIERRY
2025-09-19 17:41:46 +02:00
parent d6a06ba6cd
commit 193fcc1596
28 changed files with 4293 additions and 2 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[]
}