From af74efccf8d21e6151022b71f3cacd3fa83024ee Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:33:41 +0200 Subject: Seperate the Core from dsa gamelogic --- dsa/DSACore/Controllers/CommandsController.cs | 56 --------------------------- 1 file changed, 56 deletions(-) delete mode 100644 dsa/DSACore/Controllers/CommandsController.cs (limited to 'dsa/DSACore/Controllers/CommandsController.cs') diff --git a/dsa/DSACore/Controllers/CommandsController.cs b/dsa/DSACore/Controllers/CommandsController.cs deleted file mode 100644 index b6e0be2..0000000 --- a/dsa/DSACore/Controllers/CommandsController.cs +++ /dev/null @@ -1,56 +0,0 @@ -using System; -using DSACore.Models.Network; -using DSALib.Commands; -using DSALib.Models.Network; -using Microsoft.AspNetCore.Mvc; - -// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 - -namespace DSACore.Controllers -{ - [Route("dsa/[controller]")] - public class CommandsController : Controller - { - // GET: api/ - [HttpGet] - public string Get() - { - return "Usage: post the command to execute"; - } - - // GET api//5 - /*[HttpGet("{id}")] - public string Get(int id) - { - return "value"; - }*/ - - // POST api//Felis - [HttpPost] - public string Post([FromBody] Command cmd) - { - try - { - return CommandHandler.ExecuteCommand(cmd).message; - } - catch (Exception e) - { - return $"Ein Fehler ist aufgetreten: \n {e.Message}"; - } - } - -/* - - // PUT api//5 - [HttpPut("{id}")] - public void Put(int id, [FromBody]string value) - { - } - - // DELETE api//5 - [HttpDelete("{id}")] - public void Delete(int id) - { - }*/ - } -} \ No newline at end of file -- cgit v1.2.3-70-g09d2