#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright © 2011-2013 Binet Réseau
# See the LICENCE file for more informations


"""Main start point for Kaoz."""

import sys

from kaoz import bot

if __name__ == '__main__':
    bot.main(sys.argv)
