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