Coverage for app/core/base/base_factory.py: 100%
0 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-15 01:44 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-15 01:44 +0000
1# from abc import ABCMeta, abstractmethod
2# from typing import Any
5# class BaseFactory(metaclass=ABCMeta):
6# @abstractmethod
7# def create(self) -> Any:
8# raise NotImplementedError