updated docs

This commit is contained in:
2025-01-22 21:46:11 +03:00
parent 87e5f5ab06
commit 1ba2694a9d
50 changed files with 3342 additions and 401 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 ...

View File

@@ -0,0 +1,4 @@
// Original content from frontend/src/services/languageService.ts
import axios from 'axios';
// ... rest of the file content ...