mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 09:29:41 +02:00
- Add build script to compile TypeScript to dist/ - Update exports to point to compiled files - Update calendar-web Dockerfile to build shared-vite-config Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
|
|
@Controller('health')
|
|
export class HealthController {
|
|
@Get()
|
|
check() {
|
|
return { status: 'ok', service: 'matrix-storage-bot' };
|
|
}
|
|
}
|