feat: add itpay creds
This commit is contained in:
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user