blob: 03c78e01369faa9211ce34a3f888445101fa4f88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#nullable disable
using System;
using System.Threading.Tasks;
namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
{
/// <summary>An API client for Pastebin.</summary>
internal interface IPastebinClient : IDisposable
{
/// <summary>Fetch a saved paste.</summary>
/// <param name="id">The paste ID.</param>
Task<PasteInfo> GetAsync(string id);
}
}
|