mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
14 lines
270 B
Python
14 lines
270 B
Python
__version__ = '0.0.1'
|
|
|
|
import pydantic
|
|
|
|
from .components import AnyComponent
|
|
from .dev import dev_fastapi_app
|
|
from .display import Display
|
|
|
|
__all__ = 'AnyComponent', 'FastUI', 'dev_fastapi_app', 'Display'
|
|
|
|
|
|
class FastUI(pydantic.RootModel):
|
|
root: list[AnyComponent]
|