ticketfrei/bot.py

10 lines
208 B
Python
Raw Permalink Normal View History

2018-03-28 15:36:35 +00:00
class Bot(object):
# returns a list of Report objects
2018-03-28 20:12:57 +00:00
def crawl(self, user):
reports = []
return reports
2018-03-28 15:36:35 +00:00
# post/boost Report object
2018-03-28 20:12:57 +00:00
def post(self, user, report):
2018-03-28 15:36:35 +00:00
pass