9 lines
129 B
Python
9 lines
129 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import annotations
|
|
|
|
from .base import Strategy
|
|
|
|
|
|
class BasicStrategy(Strategy):
|
|
pass
|