code update

This commit is contained in:
2024-05-09 22:03:21 +02:00
parent 8356a83431
commit a2f21229d8
14 changed files with 216 additions and 45 deletions

13
src/app/services/zone.ts Normal file
View File

@ -0,0 +1,13 @@
import {LoadedZoneEntity} from "../entities/LoadedZoneEntity";
import {Zone} from "@prisma/client";
class ZoneService
{
public loaded: LoadedZoneEntity[] = [];
public boot() {
// Load all zones
// const zones = await new ZoneRepository().getAll();
// this.loadedZones = zones;
}
}