23 lines
490 B
Python
23 lines
490 B
Python
from base_uploader import BaseUploader
|
|
import upyun
|
|
|
|
|
|
class UpyunUploader(BaseUploader):
|
|
def __init__(self):
|
|
raise NotImplementedError
|
|
|
|
def store(self, fileobj, filename):
|
|
raise NotImplementedError
|
|
|
|
def upload(self, file_obj, filename):
|
|
raise NotImplementedError
|
|
|
|
def download(self, filename):
|
|
raise NotImplementedError
|
|
|
|
def delete(self, filename):
|
|
raise NotImplementedError
|
|
|
|
def sync(self):
|
|
raise NotImplementedError
|