mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 09:06:42 +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)
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { SessionService } from './session.service';
|
|
|
|
@Module({
|
|
providers: [SessionService],
|
|
exports: [SessionService],
|
|
})
|
|
export class SessionModule {}
|