2025-09-17 09:57:12 +01:00

12 lines
245 B
C#

using CatherineLynwood.Models;
using System.Net;
namespace CatherineLynwood.Services
{
public interface IGeoResolver
{
Task<GeoIpResult?> ResolveAsync(IPAddress ip, string userAgent, CancellationToken ct = default);
}
}