feat: remove appinfo capabilities

This commit is contained in:
Alexandre Teles
2023-11-21 00:10:22 -03:00
committed by Alexandre Teles (afterSt0rm)
parent 5482d9c442
commit 10f5225f51
3 changed files with 0 additions and 115 deletions

View File

@@ -1,19 +0,0 @@
from pydantic import BaseModel
class AppInfoFields(BaseModel):
"""
Fields for the AppInfo endpoint.
"""
name: str
category: str
logo: str
class AppInfoModel(BaseModel):
"""
Response model app info.
"""
app_info: AppInfoFields