Tipos y plantill

This commit is contained in:
2026-03-24 13:25:03 +01:00
parent 5bb3bc554b
commit ef8222ae30
10 changed files with 253 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { PgClient } from "sim-shared/infrastructure/PgClient.js";
export class AlarmUsecases {
constructor(
private alarmRepository: any
) {
}
public saveAlarm() {
}
}