Skip to content

Commit cd728c1

Browse files
committed
fixed circular import
1 parent e06db38 commit cd728c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ellar/cache/module.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import typing as t
22

3-
from ellar.cache import BaseCacheBackend, CacheService, ICacheService
43
from ellar.common import Module
54
from ellar.core import Config, DynamicModule, IModuleSetup, ModuleBase, ModuleSetup
65
from ellar.di import ProviderConfig
76

7+
from .interface import ICacheService
8+
from .model import BaseCacheBackend
89
from .schema import CacheModuleSchemaSetup
10+
from .service import CacheService
911

1012

1113
@Module()

0 commit comments

Comments
 (0)