1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-21 13:50:16 +02:00
searxng/searx/shared/shared_abstract.py

16 lines
246 B
Python
Raw Normal View History

# SPDX-License-Identifier: AGPL-3.0-or-later
class SharedDict:
def get_int(self, key):
pass
def set_int(self, key, value):
pass
def get_str(self, key):
pass
def set_str(self, key, value):
pass