Beispiel #1
0
    def get(self):
        cursor = request.args.get('cursor')
        result, cursor, _ = News.all(cursor)

        return ok(ListNewsJson(result, cursor))