This commit is contained in:
tongfei
2023-10-18 13:41:22 +08:00
parent d6f1064b58
commit a8dbb79f6d

View File

@@ -0,0 +1,20 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WMS.Web.Api.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class HeartController : ControllerBase
{
[HttpGet]
public Task<string> Heart()
{
return Task.FromResult("Success");
}
}
}