7 lines
178 B
Python
7 lines
178 B
Python
"""FastAPI Vue integration - serve Vue frontend from FastAPI."""
|
|
|
|
from .environ import env, teleport
|
|
from .staticfiles import Frontend
|
|
|
|
__all__ = ["Frontend", "env", "teleport"]
|