Files
student_manage_system/main.py
T
2026-09-21 06:58:36 +08:00

12 lines
159 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def main():
print("Hello from student-manage-system!")
if __name__ == "__main__":
main()