初始化
This commit is contained in:
16
BLWLogServer/Controllers/ValuesController.cs
Normal file
16
BLWLogServer/Controllers/ValuesController.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace BLWLogServer.Controllers
|
||||
{
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
public class ValuesController : ControllerBase
|
||||
{
|
||||
[HttpPost()]
|
||||
public string HeartBeat()
|
||||
{
|
||||
return "hello";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user