feat: change detector

This commit is contained in:
2024-04-01 11:44:53 +02:00
parent 90369bf147
commit b804a27c12
15 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package externalIpProvider
import (
"net"
)
type ExternalIpProvider interface {
GetExternalIp() (net.IP, error)
}