feat: implement basic server logic

This commit is contained in:
Li Xin
2025-04-13 21:14:31 +08:00
parent a55c357d7f
commit 510ba737d9
4 changed files with 176 additions and 0 deletions

3
src/server/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from .app import app
__all__ = ["app"]