"""
@brief      This file transfers control of custom mode handling to the user.
@details    Template configuration file. Copy this folder to the TMTC commander root and adapt
            it to your needs.
"""
import enum

from tmtccmd.core.backend import TmTcHandler
from tmtccmd.utility.logger import get_console_logger

LOGGER = get_console_logger()


class CustomModeList(enum.IntEnum):
    pass


def custom_mode_operation(tmtc_backend: TmTcHandler, mode: int):
    pass