#!/usr/bin/env python3
# -*- encoding: utf-8; py-indent-offset: 4 -*-
#
#  ____  _          _ _
# / ___|| |__   ___| | |_   _
# \___ \| '_ \ / _ \ | | | | |
#  ___) | | | |  __/ | | |_| |
# |____/|_| |_|\___|_|_|\__, |
#                      |___/
#
# created: 01/2022
# last Update 2025-05-30
#
# Author: Frank Baier
# E-Mail: dev@baier-nt.de
#
import sys

from cmk_addons.plugins.shelly.special_agents.agent_shelly import main

if __name__ == "__main__":
    sys.exit(main())
