Skip to content

Commit

Permalink
Badges.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalimaha committed Feb 9, 2016
1 parent 30af72b commit a18487f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# fake_data_crud_service
[![Build Status](https://travis-ci.org/Kalimaha/fake_data_crud_service.svg?branch=master)](https://travis-ci.org/Kalimaha/fake_data_crud_service)
[![Coverage Status](https://coveralls.io/repos/github/Kalimaha/fake_data_crud_service/badge.svg?branch=master)](https://coveralls.io/github/Kalimaha/fake_data_crud_service?branch=master)

# Fake Data CRUD Service
Simple Flask web app to provide CRUD functionalities for fake data.
22 changes: 11 additions & 11 deletions fake_data_crud_service/rest/rest.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from flask import Flask


app = Flask(__name__)

@app.route("/")
def hello():
return "Hello World!"

if __name__ == "__main__":
app.run()
# from flask import Flask
#
#
# app = Flask(__name__)
#
# @app.route("/")
# def hello():
# return "Hello World!"
#
# if __name__ == "__main__":
# app.run()

0 comments on commit a18487f

Please sign in to comment.