7 lines
95 B
Python
7 lines
95 B
Python
from typing import Protocol
|
|
|
|
|
|
class ITrader(Protocol):
|
|
def trade(self):
|
|
pass
|