Code format

This commit is contained in:
2024-06-12 00:03:25 +02:00
parent babeed7c53
commit c1c821d703
8 changed files with 107 additions and 108 deletions

View File

@@ -12,7 +12,8 @@ const FoodService = {
async GetAll() {
return await db.select<Food[]>('SELECT rowid, food, amount, per100, energy FROM food ORDER BY date DESC')
},
async SetAll(data: Food[]) {}
async SetAll(data: Food[]) {
}
}
export {FoodService}
export { FoodService }