init
This commit is contained in:
1
neko_demo_impl/neko/__init__.py
Normal file
1
neko_demo_impl/neko/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
pass
|
||||
4
neko_demo_impl/neko/interfaces.py
Normal file
4
neko_demo_impl/neko/interfaces.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from ..modules.d import DemoInterface
|
||||
|
||||
|
||||
__all__ = ['DemoInterface']
|
||||
10
neko_demo_impl/neko/types.py
Normal file
10
neko_demo_impl/neko/types.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from ..modules.dd import SomeDemoClass
|
||||
from ..modules.ddd import SomeOtherDemoClass
|
||||
|
||||
|
||||
__all__ = ['SomeDemoClass', 'SomeOtherDemoClass']
|
||||
|
||||
"""
|
||||
Here, modules can be imported from internals of implementation, but they must be
|
||||
present in the scope of the same (as in standard) file
|
||||
"""
|
||||
Reference in New Issue
Block a user