dangerzone/dangerzone/common.py
2022-06-06 22:28:01 -04:00

9 lines
264 B
Python

class Common(object):
"""
The Common class is a singleton of shared functionality throughout a dangerzone process
"""
def __init__(self):
# Name of input and out files
self.input_filename = None
self.output_filename = None