using System;
using System.Threading.Tasks;
namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
{
/// An API client for Pastebin.
internal interface IPastebinClient : IDisposable
{
/// Fetch a saved paste.
/// The paste ID.
Task GetAsync(string id);
}
}