7 lines
110 B
Python
7 lines
110 B
Python
from .syncer import SyncerBase
|
|
|
|
|
|
class Peer:
|
|
def __init__(self, syncer: SyncerBase) -> None:
|
|
pass
|