NeuroOracle / core /checkpoint /manager.py
zxcvb6958
Optimize search with trigram index + precomputed top lists
6e7a2fd
raw
history blame contribute delete
308 Bytes
class ShadowCheckpointManager:
def __init__(self, **kwargs):
pass
def list_checkpoints(self, *a):
return []
def diff_checkpoint(self, *a):
return {}
def restore_checkpoint(self, *a, **kw):
return {}
def get_files_at_checkpoint(self, *a):
return []