Add MarketDataServer

This commit is contained in:
2025-04-06 18:28:24 -04:00
parent 954c45ee81
commit ac69b4a994
17 changed files with 961 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using MarketData;
using Microsoft.AspNetCore.Mvc;
using LogLevel = MarketData.LogLevel;
namespace MarketDataServer.Controllers
{
[ApiController]
[Route("api/[controller]/[action]")]
public class PingController : ControllerBase
{
[HttpGet(Name = "GetPing")]
public bool GetPing()
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[{0:G}][PingController::GetPing]", DateTime.Now));
return true;
}
}
}