File size: 334 Bytes
b05fe7b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from __future__ import annotations

"""
Thin wrapper so `openenv` and `uv run server` can find the ASGI app.
"""

from env.server.app import app as _inner_app
from env.server.app import main as _inner_main

app = _inner_app


def main() -> None:
    _inner_main()


__all__ = ["app", "main"]


if __name__ == "__main__":
    main()