~tdelaet/cimple/old-codebase

« back to all changes in this revision

Viewing changes to src/cimple/core/storage/interface/interface.py

  • Committer: Thomas Delaet
  • Date: 2010-01-07 14:14:32 UTC
  • Revision ID: thomas@cole-20100107141432-yhker27v3pmn62uo
first phase of rewrite with focus on storage

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
class Interface:
3
 
        
4
 
        def hoard(self, data_uri):
5
 
                raise NotImplementedError
6
 
        
7
 
        def get(self, data_uri):
8
 
                raise NotImplementedError
9
 
        
10
 
        def put(self, file_location, delete):
11
 
                raise NotImplementedError
12
 
        
 
 
b'\\ No newline at end of file'