Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,19 @@
def hello():
return "Hello, World!" # 브라우저에 출력될 텍스트

@app.route("/01")
def hello02():
return """
<html>
<head>
<title>hello02</title>
</head>
<body>
<h1>hello!</h1>
<p>Welcome to hello page!!!</p>
</body>
</html>
"""

if __name__ == "__main__":
app.run(debug=True) # 개발 서버 실행 (디버그 모드)