orb 527 B

1234567891011121314151617181920
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-"
  3. """
  4. This file is part of the orb project, https://orb.03c8.net
  5. Orb - 2016/2020 - by psy (epsylon@riseup.net)
  6. You should have received a copy of the GNU General Public License along
  7. with Orb; if not, write to the Free Software Foundation, Inc., 51
  8. Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  9. """
  10. from core.main import Orb
  11. if __name__ == "__main__":
  12. app = Orb()
  13. options = app.create_options()
  14. if options:
  15. app.set_options(options)
  16. app.run()