ntfsvol.py 285 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 from modulevar import Modulevar def getInstance(): return NTFSVol() class NTFSVol(Modulevar): def __init__(self): self.name = "ntfsvol" self.description = "NTFS Volume" self.value = None def query(self): print("WHAT IS VAR " + self.name)