feat: add signalr hub and github workflow

This commit is contained in:
2021-06-29 01:01:01 -04:00
parent daf4e9ef26
commit b547ea17e7
8 changed files with 265 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TetrisClone.WebApi.Controllers
{
[ApiController]
[Route("[controller]")]
public class TetrisController : ControllerBase
{
private readonly ILogger<TetrisController> _logger;
public TetrisController(ILogger<TetrisController> logger)
{
_logger = logger;
}
[HttpGet]
public ActionResult Get()
{
return new EmptyResult();
}
}
}