stacosys/app/controllers/api.py
2015-05-02 13:43:38 +02:00

12 lines
199 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import logging
from app import app
logger = logging.getLogger(__name__)
@app.route("/comments", methods=['GET'])
def get_comments():
return "OK"