pydog4apache 504 B

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