Mo basics

This commit is contained in:
Piotr Dec 2025-11-02 22:15:12 +01:00
parent 1341b022d4
commit 8ee950940e
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
3 changed files with 44 additions and 26 deletions

16
app/services/mo.py Normal file
View 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