blob: 36d018c760ef2421bb11f233d823daf0e5710c56 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2022 Jamie Taylor
using System;
namespace StardewModdingAPI.Web.Framework.Clients.UpdateManifest
{
/// <summary>An HTTP client for fetching an update manifest from an arbitrary URL.</summary>
internal interface IUpdateManifestClient : IModSiteClient, IDisposable { }
}
|