mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 20:04:18 +01:00
* BTCPay Server Extensions  * cleanup * fix * Polish UI a bit,detect when docker deployment
17 lines
279 B
C#
17 lines
279 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Test
|
|
{
|
|
[Route("extensions/test")]
|
|
public class TestExtensionController : Controller
|
|
{
|
|
// GET
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
}
|
|
}
|