mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 06:58:06 -03:30
28 lines
414 B
Python
28 lines
414 B
Python
from ansible.cache.base import BaseCacheModule
|
|
|
|
class TowerCacheModule(BaseCacheModule):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
pass
|
|
|
|
def get(self, key):
|
|
pass
|
|
|
|
def set(self, key, value):
|
|
pass
|
|
|
|
def keys(self):
|
|
pass
|
|
|
|
def contains(self, key):
|
|
pass
|
|
|
|
def delete(self, key):
|
|
pass
|
|
|
|
def flush(self):
|
|
pass
|
|
|
|
def copy(self):
|
|
pass
|