Add k6 tests
This commit is contained in:
15
k6-example/src/data/marketplace.ts
Normal file
15
k6-example/src/data/marketplace.ts
Normal 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[]
|
||||
}
|
||||
Reference in New Issue
Block a user