feat: umami migration

This commit is contained in:
2026-02-07 01:11:28 +01:00
parent 29d474a102
commit 9f6168592c
27 changed files with 3310 additions and 193 deletions

View File

@@ -1,9 +1,9 @@
export interface NotificationMessage {
export interface NotificationOptions {
title: string;
message: string;
priority?: number; // 0-10, Gotify style
priority?: number;
}
export interface NotificationService {
notify(message: NotificationMessage): Promise<void>;
notify(options: NotificationOptions): Promise<void>;
}