mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 13: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
17
services/matrix-clock-bot/src/app.module.ts
Normal file
17
services/matrix-clock-bot/src/app.module.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ConfigModule } from '@nestjs/config';
|
||||
import { BotModule } from './bot/bot.module';
|
||||
import { HealthController } from './health.controller';
|
||||
import configuration from './config/configuration';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
ConfigModule.forRoot({
|
||||
isGlobal: true,
|
||||
load: [configuration],
|
||||
}),
|
||||
BotModule,
|
||||
],
|
||||
controllers: [HealthController],
|
||||
})
|
||||
export class AppModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue