blob: 836d43f79fe04eb60dfc9844f70c685095b7036a (
plain)
1
2
3
4
5
6
7
|
using System;
namespace StardewModdingAPI.Web.Framework.Clients.Chucklefish
{
/// <summary>An HTTP client for fetching mod metadata from the Chucklefish mod site.</summary>
internal interface IChucklefishClient : IModSiteClient, IDisposable { }
}
|