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