mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
15 lines
252 B
C#
15 lines
252 B
C#
using System;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Events.Controllers
|
|
{
|
|
public class EventsController : Controller
|
|
{
|
|
[HttpPost]
|
|
[Route("~/")]
|
|
public void Post([FromBody]string value)
|
|
{
|
|
}
|
|
}
|
|
}
|