mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 04:45:49 +01:00
18 lines
257 B
Python
18 lines
257 B
Python
|
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
|
||
|
|