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