feat(matrix-clock-bot): add Matrix bot for time tracking

Features:
- Timer commands: !timer 25m, !stop, !resume, !reset, !status
- Alarm commands: !alarm 07:30, !alarms
- World clock: !zeit, !weltuhr Berlin, !weltuhren
- Voice note support via mana-stt transcription
- Natural language parsing for German time formats
This commit is contained in:
Till-JS 2026-01-28 16:27:49 +01:00
parent bd10762107
commit dbd14f7134
17 changed files with 1437 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { ClockService } from './clock.service';
@Module({
providers: [ClockService],
exports: [ClockService],
})
export class ClockModule {}