mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-06 22:42:49 +01:00
9 lines
162 B
C#
9 lines
162 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace DHT.Utils.Http;
|
|
|
|
public interface IHttpOutput {
|
|
Task WriteTo(HttpResponse response);
|
|
}
|