You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
stacosys/app/controllers/api.py

13 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"