using System; using System.Threading.Tasks; namespace StardewModdingAPI.Web.Framework.Clients.Nexus { /// An HTTP client for fetching mod metadata from Nexus Mods. internal interface INexusClient : IDisposable { /********* ** Methods *********/ /// Get metadata about a mod. /// The Nexus mod ID. /// Returns the mod info if found, else null. Task GetModAsync(uint id); } }