mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
12 lines
232 B
Python
12 lines
232 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
.. module:: burpui.ext.sql
|
|
:platform: Unix
|
|
:synopsis: Burp-UI external SQL module.
|
|
|
|
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
|
|
|
"""
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
db = SQLAlchemy()
|