PySca/pysca/interfaces/AbstractScanner.py

6 lines
126 B
Python
Raw Permalink Normal View History

2020-11-08 09:25:48 +00:00
from abc import ABC, abstractmethod
class IScanner(ABC):
@abstractmethod
def scan(self, item) -> object:
pass