diff --git a/app.py b/app.py index 2aa951f..d98f173 100755 --- a/app.py +++ b/app.py @@ -8,7 +8,7 @@ @app.route('/') def index(): - return {'message': 'Hello, folks!'}, 200 + return {'message': 'Hello, Devs!'}, 200 @app.route('/slack/events', methods=['POST']) @@ -27,7 +27,7 @@ def slack_events(): if event['type'] == 'message': response_text = "메시지 이벤트를 처리했습니다." else: - response_text = "지원하지 않는 이벤트 타입입니다." + response_text = "지원하지 않는 이벤트입니다." response = { 'text': response_text @@ -44,8 +44,8 @@ def slack_command(): command = data.get('command') - if command == '/your_command': - response_text = "슬래시 커맨드 '/your_command'가 실행되었습니다." + if command == '/my_command': + response_text = "슬래시 커맨드 '/my_command'가 실행되었습니다." else: response_text = "지원하지 않는 슬래시 커맨드입니다."