mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 14:26:42 +02:00
✨ 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:
parent
bd10762107
commit
dbd14f7134
17 changed files with 1437 additions and 0 deletions
8
services/matrix-clock-bot/src/clock/clock.module.ts
Normal file
8
services/matrix-clock-bot/src/clock/clock.module.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ClockService } from './clock.service';
|
||||
|
||||
@Module({
|
||||
providers: [ClockService],
|
||||
exports: [ClockService],
|
||||
})
|
||||
export class ClockModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue