using doc forge
This commit is contained in:
8
mail_intake/auth/base.pyi
Normal file
8
mail_intake/auth/base.pyi
Normal file
@@ -0,0 +1,8 @@
|
||||
from abc import ABC, abstractmethod
|
||||
from typing import Generic, TypeVar
|
||||
|
||||
T = TypeVar("T")
|
||||
|
||||
class MailIntakeAuthProvider(ABC, Generic[T]):
|
||||
@abstractmethod
|
||||
def get_credentials(self) -> T: ...
|
||||
Reference in New Issue
Block a user