13 lines
282 B
Python
13 lines
282 B
Python
from Messaging.packmessage import PackMessage
|
|
import umsgpack
|
|
|
|
class Voter:
|
|
def __init__(self):
|
|
# self._client =
|
|
pass
|
|
|
|
def submit_vote(self, vote_contents):
|
|
raise NotImplementedError()
|
|
|
|
def request_vote(self):
|
|
raise NotImplementedError() |