7 lines
218 B
Python
7 lines
218 B
Python
# 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 ...
|