This repository has been archived on 2025-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tetri5-backend/TetrisClone.WebApi/Controllers/TetrisController.cs

28 lines
613 B
C#

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();
}
}
}