using System; using System.Threading.Tasks; namespace Wabbajack.Lib.Downloaders.UrlDownloaders { public class BethesdaNetInferencer : IUrlInferencer { public async Task Infer(Uri uri) { return BethesdaNetDownloader.StateFromUrl(uri); } } }