vpa / server /app.py
dipsubhro's picture
feat: add VPA server entrypoints
2b421eb
raw
history blame contribute delete
194 Bytes
from __future__ import annotations
from vpa_env.server import app, main as run_server
def main() -> None:
run_server()
__all__ = ["app", "main"]
if __name__ == "__main__":
main()