Mo basics
This commit is contained in:
parent
1341b022d4
commit
8ee950940e
3 changed files with 44 additions and 26 deletions
16
app/services/mo.py
Normal file
16
app/services/mo.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue