feat: 添加 Python 项目文件

This commit is contained in:
giteadmin 2026-07-26 19:24:04 +08:00
parent 73ca594d5b
commit 8f6ccc1bb4
3 changed files with 9 additions and 2 deletions

2
.env.example Normal file
View File

@ -0,0 +1,2 @@
DATABASE_URL=sqlite:///db.sqlite
DEBUG=true

View File

@ -1,3 +1,3 @@
# mcp-demo
# MCP Demo
MCP 远程推送测试
通过远程 MCP Server 推送的代码项目

5
src/main.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print("Hello MCP!")
if __name__ == "__main__":
main()