Coverage for interfaces / strategy.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-04 15:08 +0000

1# interfaces/strategy.py 

2from typing import List, Dict 

3 

4class Strategy: 

5 async def run(self, stock_codes: List[str]) -> Dict: 

6 raise NotImplementedError