using System.Collections.Generic; using System.Threading.Tasks; namespace FastGithub.Scanner { /// /// 定义域名的ip提值者 /// interface IDomainAddressProvider { /// /// 创建域名与ip的关系 /// /// Task> CreateDomainAddressesAsync(); } }