9 lines
177 B
Python
9 lines
177 B
Python
class Bot(object):
|
|
# returns a list of Report objects
|
|
def crawl(self, user):
|
|
pass
|
|
|
|
# post/boost Report object
|
|
def post(self, user, report):
|
|
pass
|