rlt_salary/app/database/methods.py

8 lines
208 B
Python
Raw Normal View History

2024-02-27 20:21:36 +01:00
from typing import List, Tuple
async def aggregate_salaries(dt_from: str, dt_upto: str, group_type: str) -> Tuple[List[int], List[str]]:
pipeline = [
]
return {"dataset": None, "labels": None}