#!/usr/bin/env python
# baleen
# Management and administration script for Baleen
#
# Author:   Benjamin Bengfort <benjamin@bengfort.com>
# Created:  Fri Sep 19 10:56:44 2014 -0400
#
# Copyright (C) 2014 Bengfort.com
# For license information, see LICENSE.txt
#
# ID: baleen [5ad94d7] benjamin@bengfort.com $

"""
Management and administration script for Baleen
"""

##########################################################################
## Imports
##########################################################################

from baleen.console import BaleenUtility


##########################################################################
## Load and execute the CLI utility
##########################################################################

if __name__ == '__main__':
    app = BaleenUtility.load()
    app.execute()
