#!/usr/bin/env python
"""This tool loads the Bcfg2 core into an interactive debugger."""

import sys
from Bcfg2.Server.Info import CLI


if __name__ == '__main__':
    sys.exit(CLI().run())
