mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 20:41:25 +02:00
Features: - Random quotes and daily quote of the day - 10 categories (motivation, wisdom, love, life, success, etc.) - Search functionality - Login integration with Zitare backend - Favorites and lists management - Voice note transcription via mana-stt - Natural language command support (German/English)
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { QuotesService } from './quotes.service';
|
|
import { ZitareService } from './zitare.service';
|
|
|
|
@Module({
|
|
providers: [QuotesService, ZitareService],
|
|
exports: [QuotesService, ZitareService],
|
|
})
|
|
export class QuotesModule {}
|