mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 20:49:40 +02:00
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
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
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 {}
|