12 lines
159 B
Python
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()
|