mvt/mvt/ios/modules/backup/__init__.py

12 lines
439 B
Python
Raw Normal View History

2021-08-15 11:14:18 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2022 Claudio Guarnieri.
2021-08-15 11:14:18 +00:00
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
from .backup_info import BackupInfo
from .configuration_profiles import ConfigurationProfiles
2021-08-15 11:14:18 +00:00
from .manifest import Manifest
from .profile_events import ProfileEvents
2021-08-15 11:14:18 +00:00
BACKUP_MODULES = [BackupInfo, ConfigurationProfiles, Manifest, ProfileEvents]