mirror of
https://github.com/kevinveenbirkenbach/splitted-secret.git
synced 2025-09-10 04:26:32 +02:00
Refactored to use AbstractSplittedSecret
This commit is contained in:
3
scripts/classes/AbstractSplittedSecret.py
Normal file
3
scripts/classes/AbstractSplittedSecret.py
Normal file
@@ -0,0 +1,3 @@
|
||||
class AbstractSplittedSecret:
|
||||
def __init__(self):
|
||||
self.encrypted_splitted_password_files_folder = "data/encrypted/splitted_password_files/"
|
@@ -0,0 +1,7 @@
|
||||
from .AbstractSplittedSecret import AbstractSplittedSecret
|
||||
class Cleanup(AbstractSplittedSecret):
|
||||
def __init__(self):
|
||||
pass
|
||||
def deleteAll(self):
|
||||
|
||||
pass
|
@@ -3,7 +3,7 @@
|
||||
|
||||
import subprocess
|
||||
|
||||
class Cli():
|
||||
class Cli(object):
|
||||
|
||||
def __init__(self):
|
||||
self.command = ''
|
||||
|
Reference in New Issue
Block a user