10 lines
136 B
Python
10 lines
136 B
Python
|
class Feed:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def prompt_auth(self):
|
||
|
return {}
|
||
|
|
||
|
def create_post(self):
|
||
|
pass
|