init
This commit is contained in:
15
neko_demo_impl/modules/d.py
Normal file
15
neko_demo_impl/modules/d.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from neko_demo_standard import DemoInterface
|
||||
|
||||
|
||||
class RDemoInterface(DemoInterface):
|
||||
@staticmethod
|
||||
def some_very_useful_method(very_important_arg: str = "h") -> None:
|
||||
"""
|
||||
It can be some adapter for internal logic
|
||||
"""
|
||||
print(very_important_arg)
|
||||
|
||||
|
||||
DemoInterface = RDemoInterface
|
||||
|
||||
__all__ = ['DemoInterface']
|
||||
Reference in New Issue
Block a user