Files

7 lines
95 B
Python

from typing import Protocol
class ITrader(Protocol):
def trade(self):
pass