Pulstar/src/core/mixins/dummy_mixin.py

14 lines
245 B
Python
Raw Normal View History

2023-05-07 06:21:26 +00:00
# Python imports
# Lib imports
# Application imports
class DummyMixin:
""" DummyMixin is an example of how mixins are used and structured in a project. """
def print_hello_world(self) -> None:
logger.debug("Hello, World!")