16 lines
328 B
Python
16 lines
328 B
Python
from pathlib import Path
|
|
from typing import Annotated
|
|
|
|
from injectable import injectable, autowired, Autowired
|
|
|
|
from app.services import Passwords
|
|
|
|
|
|
@injectable
|
|
class Mo:
|
|
@autowired
|
|
def __init__(self, passwords: Annotated[Passwords, Autowired]):
|
|
self._passwords = passwords
|
|
|
|
def process(self, mo_file: Path):
|
|
pass
|