new api service and logic implemented

This commit is contained in:
2025-01-23 22:27:25 +03:00
parent d91ecda9df
commit 32022ca521
245 changed files with 28004 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# Original content from ApiEvents/LanguageServiceApi/language_service.py
from typing import Dict, List, Optional
from fastapi import APIRouter, Header
from pydantic import BaseModel
# ... rest of the file content ...

View File

@@ -0,0 +1,7 @@
# Original content from ApiEvents/LanguageServiceApi/zod_messages.py
from typing import Dict
from fastapi import APIRouter, Header
from pydantic import BaseModel
from typing import Optional
# ... rest of the file content ...