mirror of
https://github.com/ChronosX88/PyNesca.git
synced 2025-02-17 00:16:30 +00:00
13 lines
201 B
Python
13 lines
201 B
Python
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
|
||
|
class AbstractStorage(ABC):
|
||
|
|
||
|
@abstractmethod
|
||
|
def put_responce(self, address, responce):
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def save(self):
|
||
|
pass
|