diff --git a/app.py b/app.py index a21bd0e..5623655 100644 --- a/app.py +++ b/app.py @@ -8,7 +8,15 @@ @app.route("/") # 루트 URL에 대한 라우팅 설정 def hello(): - return "Hello, World!" # 브라우저에 출력될 텍스트 + return """ + +
This file is from the E-COPS GitHub repository.
+ + +""" if __name__ == "__main__": app.run(debug=True) # 개발 서버 실행 (디버그 모드)