1#!/usr/bin/env python 2 3""" 4Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org) 5See the file 'LICENSE' for copying permission 6""" 7 8from plugins.generic.connector import Connector as GenericConnector 9 10class Connector(GenericConnector): 11 pass 12 13