FastGithub/FastGithub.Scanner/IDomainAddressProvider.cs
2021-06-17 17:50:44 +08:00

11 lines
221 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace FastGithub.Scanner
{
interface IDomainAddressProvider
{
Task<IEnumerable<DomainAddress>> CreateDomainAddressesAsync();
}
}