feat(backend): scaffold Express API with health and module layout
Add src/routes/notifications, services/pushService, models/device, scheduler stubs, and entrypoint with GET /health and startup log.
This commit is contained in:
7
src/models/device.ts
Normal file
7
src/models/device.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface Device {
|
||||
id: string;
|
||||
pushToken: string;
|
||||
platform: "ios" | "android" | "web";
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
Reference in New Issue
Block a user