15 lines
116 B
Python
15 lines
116 B
Python
|
import os
|
||
|
|
||
|
|
||
|
class Backup:
|
||
|
|
||
|
config = {}
|
||
|
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def run(self):
|
||
|
pass
|
||
|
|
||
|
|