Files
BabyVideoService/Http/Page/HomeController.cs
2026-02-08 16:58:32 +08:00

14 lines
261 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ACBuildService.Controllers;
[ApiController]
[Route("/")]
public class HomeController : NBControllerBase
{
[HttpGet("/")]
public IActionResult Index()
{
return Content("service running");
}
}