Code clean up

This commit is contained in:
2022-04-10 16:40:56 +03:00
parent e536574e84
commit 138e0ffa2f
20 changed files with 12 additions and 525 deletions

View File

@@ -1,18 +1,6 @@
from pydantic import BaseModel
from app.serializers.orjson_config import ORJSONConfig
class Source(BaseModel):
id: int
name: str
class Config(ORJSONConfig):
pass
class CreateSource(BaseModel):
name: str
class Config(ORJSONConfig):
pass