mvt/mvt/ios/modules/fs/__init__.py

20 lines
817 B
Python
Raw Normal View History

2021-07-16 06:05:01 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021 The MVT Project Authors.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
2021-07-16 06:05:01 +00:00
2021-07-30 09:40:09 +00:00
from .cache_files import CacheFiles
from .filesystem import Filesystem
from .net_netusage import Netusage
from .analytics import Analytics
2021-07-30 09:40:09 +00:00
from .safari_favicon import SafariFavicon
2021-09-28 10:42:57 +00:00
from .shutdownlog import ShutdownLog
2021-07-30 09:40:09 +00:00
from .version_history import IOSVersionHistory
2021-07-16 06:05:01 +00:00
from .webkit_indexeddb import WebkitIndexedDB
from .webkit_localstorage import WebkitLocalStorage
from .webkit_safariviewservice import WebkitSafariViewService
FS_MODULES = [CacheFiles, Filesystem, Netusage, Analytics, SafariFavicon, ShutdownLog,
2021-09-28 10:42:57 +00:00
IOSVersionHistory, WebkitIndexedDB, WebkitLocalStorage,
WebkitSafariViewService,]