mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-04 12:41:50 +02:00
9 lines
264 B
Python
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
|