#!/usr/bin/env python # -*- coding: utf-8 -*-" """ This file is part of the orb project, http://orb.03c8.net Orb - 2016 - by psy (epsylon@riseup.net) You should have received a copy of the GNU General Public License along with RedSquat; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from core.main import Orb if __name__ == "__main__": app = Orb() options = app.create_options() if options: app.set_options(options) app.run()