11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import { PgClient } from "sim-shared/infrastructure/PgClient.js";
|
|
|
|
export class AlarmsRepository {
|
|
constructor(private pgClient: PgClient) {
|
|
}
|
|
|
|
public createAlarm() {
|
|
|
|
}
|
|
}
|