Initial commit from saas-meta

This commit is contained in:
Hamza-Ayed
2026-03-30 17:04:27 +03:00
commit 3b28389dc3
91 changed files with 20697 additions and 0 deletions

18
src/app.controller.ts Normal file
View File

@@ -0,0 +1,18 @@
import { Controller, Get } from '@nestjs/common';
import { ApiOperation, ApiResponse, ApiTags } from '@nestjs/swagger';
@ApiTags('root')
@Controller()
export class AppController {
@Get()
@ApiOperation({ summary: 'Welcome to the API | الترحيب بالـ API' })
@ApiResponse({ status: 200, description: 'API is running | الـ API يعمل بنجاح' })
getHello() {
return {
message: 'Welcome to Ads Analytics SaaS API',
version: '1.0',
docs: '/api/docs',
status: 'active',
};
}
}