6 lines
177 B
Python
6 lines
177 B
Python
|
class Context:
|
||
|
def __init__(self, store, api=None, captain=None, general=None):
|
||
|
self.store = store
|
||
|
self.api = api
|
||
|
self.captain = captain
|
||
|
self.general = general
|