Files
neko-demo-impl/neko_demo_impl/modules/d.py
2024-02-02 22:41:44 +02:00

16 lines
344 B
Python

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