hbontempo-br/ddns-manager

View on GitHub
ddns_manager/public_ip_getter/base.py

Summary

Maintainability
A
0 mins
Test Coverage
from abc import ABC, abstractmethod


class PublicIPGetterError(Exception):
    pass


class PublicIPGetter(ABC):
    @abstractmethod
    def get_current_ip(self) -> str:
        raise NotImplementedError