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:
14
src/Events/Controllers/EventsController.cs
Normal file
14
src/Events/Controllers/EventsController.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user