Added basic module support

This commit is contained in:
2026-04-19 18:15:39 +01:00
parent 142a7408bd
commit 1e8cf0cb78
6 changed files with 93 additions and 2 deletions

7
app/modules/index.ts Normal file
View File

@@ -0,0 +1,7 @@
import type { DashboardModule } from '../types/module';
import { ClockModule } from './clock';
// Register all modules here
export const modules: Record<string, DashboardModule> = {
[ClockModule.name]: ClockModule
};