提交功能
This commit is contained in:
14
Http/Page/HomeController.cs
Normal file
14
Http/Page/HomeController.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace ACBuildService.Controllers;
|
||||
|
||||
[ApiController]
|
||||
[Route("/")]
|
||||
public class HomeController : NBControllerBase
|
||||
{
|
||||
[HttpGet("/")]
|
||||
public IActionResult Index()
|
||||
{
|
||||
return Content("service running");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user