mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
3d96a9839a
This patch was generated by black [1]:: make format.python [1] https://github.com/psf/black Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
21 lines
367 B
Python
21 lines
367 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
|
class SharedDict(ABC):
|
|
@abstractmethod
|
|
def get_int(self, key):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def set_int(self, key, value):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_str(self, key):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def set_str(self, key, value):
|
|
pass
|