6 lines
131 B
Python
6 lines
131 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class URLScorer(ABC):
|
|
@abstractmethod
|
|
def score(self, url: str) -> float:
|
|
pass |