Files

12 lines
159 B
Python
Raw Permalink Normal View History

2026-09-21 06:58:01 +08:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
2026-09-19 18:16:15 +08:00
def main():
print("Hello from student-manage-system!")
if __name__ == "__main__":
main()