mirror of
https://github.com/ansible/awx.git
synced 2026-03-01 08:48:46 -03:30
Some light implimentation details for basic fact caching and collection
This commit is contained in:
27
awx/plugins/fact_caching/tower.py
Normal file
27
awx/plugins/fact_caching/tower.py
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user