mirror of
https://github.com/altlinux/gpupdate.git
synced 2025-03-21 18:50:38 +03:00
Cache storage API stabilized
This commit is contained in:
parent
ad6712a6de
commit
40ee4ec8c4
@ -4,3 +4,21 @@ class cache(ABC):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def store(self, str_id, value):
|
||||
'''
|
||||
'''
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def get(self, obj_id):
|
||||
'''
|
||||
'''
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def get_default(self, obj_id, default_value):
|
||||
'''
|
||||
'''
|
||||
pass
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user