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.filesystem import Filesystem as GenericFilesystem 9 10class Filesystem(GenericFilesystem): 11 pass 12 13