9 lines
175 B
Python
9 lines
175 B
Python
"""
|
|
Analyzer modules for codebase auditing.
|
|
|
|
Each analyzer implements an analyze(codebase_path, metadata) function
|
|
that returns a list of findings.
|
|
"""
|
|
|
|
__version__ = '1.0.0'
|