1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00

stub out events project

This commit is contained in:
Kyle Spearrin
2017-12-04 10:12:11 -05:00
parent 8a88a36140
commit 755c73deba
8 changed files with 148 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
using System;
using Microsoft.AspNetCore.Mvc;
namespace Events.Controllers
{
public class EventsController : Controller
{
[HttpPost]
[Route("~/")]
public void Post([FromBody]string value)
{
}
}
}