diff options
Diffstat (limited to 'modules/audit.py')
| -rw-r--r-- | modules/audit.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/audit.py b/modules/audit.py new file mode 100644 index 0000000..5e89f53 --- /dev/null +++ b/modules/audit.py @@ -0,0 +1,9 @@ + + +class Audit: + """ Perform various code audits on a specified Pkg """ + + tools = ['flawfinder', 'rats'] + + def __init__(self, pkg): + """ @param pkg: a Pkg instance """ |
