Forked from
DM / dm-docs
261 commits behind, 771 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
storage.py 353 B
#!/usr/bin/env python
import time
from dmObject import DmObject
class Storage(DmObject):
DEFAULT_KEY_LIST = [ 'id', 'name', 'description', 'defaultScheme' ]
def __init__(self, dict={}):
DmObject.__init__(self, dict)
####################################################################
# Testing
if __name__ == '__main__':
pass