This commit is contained in:
hhh
2024-02-02 22:41:44 +02:00
commit 81f77f8bc3
11 changed files with 108 additions and 0 deletions

View 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']