Add storage managers (local, sftp, s3, hybrid).

This commit is contained in:
evazion
2018-03-14 16:57:29 -05:00
parent 8a012d4c91
commit b0c7d9c185
8 changed files with 332 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class StorageManager::Null < StorageManager
def store(io, path)
# no-op
end
def delete(path)
# no-op
end
def open(path)
# no-op
end
end