summaryrefslogtreecommitdiffstats
path: root/modules/audit.py
blob: fccd494c94a4d2e17d8b35c6dc042c04e15a0d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
from base.module import Module

class Audit(Module):
    """ Perform various code audits on a specified Pkg """

    tools = ['flawfinder', 'rats']

    def __init__(self, pkg):
        """ @param pkg: a Pkg instance """

__all__ = ['Audit']