Skeleton ready

This commit is contained in:
2026-07-08 23:01:55 +04:00
commit d9e5effdce
75 changed files with 1989 additions and 0 deletions

View File

View File

@@ -0,0 +1,17 @@
from abc import ABC, abstractmethod
from punq import Container
class Provider(ABC):
_container: Container
def __init__(self, container: Container) -> None:
self._container = container
@abstractmethod
def register(self) -> None:
pass
@abstractmethod
def bootstrap(self) -> None:
pass