Files
Torch/Torch.API/ITorchServer.cs
2016-12-17 01:59:03 -08:00

15 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Torch.API
{
public interface ITorchServer
{
void Start();
void Stop();
}
}