comparison: backup.py
backup.py
- changeset 1
- 4cdc9c1f6b28
- child 2
- e343594c0014
equal
deleted
inserted
replaced
|
1 # |
|
2 # Borgend Backup instance |
|
3 # |
|
4 |
|
5 class Backup: |
|
6 |
|
7 def __init__(self, identifier, config): |
|
8 self.config=config |
|
9 self.identifier=identifier |
|
10 self.lastrun=None |
|
11 |
|
12 |
|
13 |