mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 08:26:15 +00:00
10 lines
252 B
Python
Executable File
10 lines
252 B
Python
Executable File
MODULE_NAME = "Android Analyzer Python"
|
|
|
|
"""
|
|
A parent class of the analyzers
|
|
"""
|
|
class AndroidComponentAnalyzer:
|
|
# The Analyzer should implement this method
|
|
def analyze(self, dataSource, fileManager, context):
|
|
raise NotImplementedError
|