refactor static methods to superclass
This commit is contained in:
parent
f9743b834c
commit
0122e9ed54
|
|
@ -8,11 +8,3 @@ class Abc(Strategy):
|
|||
stop: float
|
||||
tp: float
|
||||
risk: float
|
||||
|
||||
@staticmethod
|
||||
def get_table_name():
|
||||
return "Abc"
|
||||
|
||||
@staticmethod
|
||||
def get_route_prefix():
|
||||
return "/strategies/abc"
|
||||
|
|
@ -6,3 +6,11 @@ class Strategy():
|
|||
enabled: bool
|
||||
fulfilled: bool
|
||||
created: str
|
||||
|
||||
@classmethod
|
||||
def get_table_name(cls):
|
||||
return cls.__name__
|
||||
|
||||
@classmethod
|
||||
def get_route_prefix(cls):
|
||||
return "/strategies/" + cls.__name__.lower()
|
||||
Loading…
Reference in New Issue