9 lines
109 B
Python
9 lines
109 B
Python
#!/usr/bin/env python3.12
|
|
|
|
class Cache:
|
|
"""Cache Search Module"""
|
|
def __init__(self):
|
|
pass
|
|
|
|
|