mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-06-01 14:22:34 -06:00
17 lines
530 B
Python
17 lines
530 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
.. module:: burpui.api.custom.inputs
|
|
:platform: Unix
|
|
:synopsis: Burp-UI api custom inputs module.
|
|
|
|
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
|
|
|
|
|
"""
|
|
import inspect
|
|
import flask_restplus.inputs
|
|
from flask_restplus.inputs import * # noqa # pylint: disable=locally-disabled, wildcard-import, unused-wildcard-import
|
|
from .my_inputs import boolean # noqa
|
|
|
|
ALL = inspect.getmembers(flask_restplus.inputs, inspect.isfunction)
|
|
__all__ = [x for x, _ in ALL if not x.startswith('_')] + ['boolean']
|