1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 09:32:48 -05:00

Billing project

This commit is contained in:
Kyle Spearrin
2017-03-18 18:52:44 -04:00
parent 6c20bd31f6
commit 188571cad8
11 changed files with 156 additions and 1 deletions

View File

@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Mvc;
namespace Bit.Billing.Controllers
{
[Route("stripe")]
public class StripeController : Controller
{
[HttpPost("webhook")]
public void PostWebhook([FromBody]dynamic body)
{
}
}
}