chore: initialize lhbfx project and documentation

This commit is contained in:
wanghep
2026-04-17 21:20:26 +08:00
commit 5a5dd3c9fd
54 changed files with 11185 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from __future__ import annotations
import uvicorn
from _bootstrap import add_src_to_path
def main() -> None:
add_src_to_path()
uvicorn.run("lhbfx.app:app", host="127.0.0.1", port=8000, reload=False)
if __name__ == "__main__":
main()