#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL   : https://thl-cmk.hopto.org
# Date  : 2024-07-20
# File  : bgp_topology/lib_exec/bgp_topology

import sys

from cmk_addons.plugins.bgp_topology.lib.bgp_topology import main

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


