All tools inherit "Dependency".

This commit is contained in:
derv82
2018-04-21 11:34:30 -04:00
parent 1083db6f88
commit 0adcd55742
12 changed files with 83 additions and 16 deletions

View File

@@ -1,11 +1,15 @@
#!/usr/bin/python2.7
# -*- coding: utf-8 -*-
from .dependency import Dependency
from ..util.process import Process
import json
class Wash(object):
class Wash(Dependency):
''' Wrapper for Wash program. '''
dependency_required = False
dependency_name = 'wash'
dependency_url = 'https://github.com/t6x/reaver-wps-fork-t6x'
def __init__(self):
pass