feat: multiple changes

Signed-off-by: Avior <git@avior.me>
This commit is contained in:
2024-09-09 14:27:46 +02:00
parent d8f203f434
commit 3e91597dca
31 changed files with 216 additions and 223 deletions

View File

@ -9,8 +9,7 @@
*
* Touch this interface to define which key is linked to which Dao
*/
interface DaoItem {
}
interface DaoItem {}
/**
* Class to get any DAO
@ -48,7 +47,8 @@ export default class DaoFactory {
*/
private static initDao(item: keyof DaoItem): any | undefined {
switch (item) {
default: return undefined
default:
return undefined
}
}
}