Skip to content

Commit

Permalink
Changed hello world to something more functional.
Browse files Browse the repository at this point in the history
  • Loading branch information
injelee committed Dec 14, 2017
1 parent 62cd4a9 commit 1eb6b05
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@


@app.route('/')
def hello_world():
def docker_status_confirmed():
"""
Simple hello world function to test working Docker container.
:return: Hello World
:return: Status confirmation
:rtype: str
"""
return 'Hello, world2'
return 'Congratulations! Your Docker image is fully configured ' \
'and ready for POSTing.'


class get_patient_class(MongoModel):
Expand Down

0 comments on commit 1eb6b05

Please sign in to comment.