#!/usr/bin/env python3
# -*- encoding: utf-8; py-indent-offset: 4 -*-

# Copyright (C) Burgess Systems Consulting Pty Ltd <checkmk@burgess-consulting.com.au>

# SPDX-License-Identifier: GPL-2.0-only

import sys

from cmk_addons.plugins.oci.special_agents import agent_oci

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