feat: add itpay creds

This commit is contained in:
2026-04-22 12:15:23 +03:00
parent 2627354673
commit a146a6a3e9
3 changed files with 29 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
from __future__ import annotations
from typing import Protocol,runtime_checkable
from src.application.domain.entities import SessionEntity,UserEntity
@runtime_checkable
class IUserRepository(Protocol):
...
@runtime_checkable
class ISessionRepository(Protocol):
...
__all__=['IUserRepository','ISessionRepository','UserEntity','SessionEntity']