This repository has been archived on 2025-01-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fabriquedoc-backend/responses.py
2023-05-17 15:53:44 -04:00

15 lines
193 B
Python

from typing import List
from pydantic import BaseModel
class Styles(BaseModel):
styles: List[str]
class Formats(BaseModel):
formats: List[str]
class App(BaseModel):
app: str