mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-08 20:56:04 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
using System.Net;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WelsonJS.Launcher
|
|
{
|
|
public interface IResourceTool
|
|
{
|
|
bool CanHandle(string path);
|
|
Task HandleAsync(HttpListenerContext context, string path);
|
|
}
|
|
}
|