mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 06:05:58 -06:00
20 lines
382 B
Python
20 lines
382 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
Burp-UI is a web-ui for burp backup written in python with Flask and
|
|
jQuery/Bootstrap
|
|
|
|
.. module:: burpui
|
|
:platform: Unix
|
|
:synopsis: Burp-UI main module.
|
|
|
|
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
|
"""
|
|
import warnings
|
|
|
|
from .app import create_app
|
|
|
|
warnings.simplefilter("always", RuntimeWarning)
|
|
|
|
|
|
# backward compatibility
|
|
init = create_app
|