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