mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 14:43:10 +08: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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|