mirror of
https://github.com/robweber/xbmcbackup.git
synced 2026-05-25 08:41:22 +02:00
modified backup.py to test dropbox api
added start of vfs.py to abstract file repos
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import utils as utils
|
||||
|
||||
class Vfs:
|
||||
type = 'none'
|
||||
|
||||
def __init__(type):
|
||||
self.type = type
|
||||
|
||||
def listdir(directory):
|
||||
return {}
|
||||
|
||||
def mkdir(directory):
|
||||
return True
|
||||
|
||||
def copy(source,dest):
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user