Skip to content

Commit 135a445

Browse files
committed
Initial commit for order executors
1 parent aceba96 commit 135a445

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from investing_bot_framework.core.order_executors.order_executor import OrderExecutor
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from abc import ABC, abstractmethod
2+
3+
4+
class OrderExecutor(ABC):
5+
6+
@abstractmethod
7+
def execute_orders(self) -> None:
8+
pass

0 commit comments

Comments
 (0)