mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-07-19 21:04:34 +02: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);
|
|
}
|