10 lines
208 B
Python
10 lines
208 B
Python
class Bot(object):
|
|
# returns a list of Report objects
|
|
def crawl(self, user):
|
|
reports = []
|
|
return reports
|
|
|
|
# post/boost Report object
|
|
def post(self, user, report):
|
|
pass
|