feat: add more demo account seeders

This commit is contained in:
Ahmed Bouhuolia
2024-08-22 13:04:51 +02:00
parent 6cb9c919b5
commit 59f480f9d5
11 changed files with 228 additions and 15 deletions

View File

@@ -1,6 +1,17 @@
export class SeedDemoAbstract {
/**
* Retrieves the seeder file mapping.
* @returns {Array<>}
*/
get mapping() {
return [];
}
export class SeedDemoAbstract{
}
/**
* Retireves the seeder file import params.
* @returns {Record<string, any>}
*/
get importParams() {
return {};
}
}