No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dummy_backend.py 378B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. ## @package EditorialModel.backend.dummy_backend
  3. # @brief Gives an empty backend
  4. #
  5. # Allows an editorial model to use an empty backend
  6. # Mostly for migration and test purpose
  7. ## Manages a Json file based backend structure
  8. class EmBackendDummy(object):
  9. def load(self):
  10. data = {}
  11. return data
  12. def save(self):
  13. return True