15 lines
338 B
C#
15 lines
338 B
C#
namespace CloudGaming.Api.Admin.Controllers;
|
|
|
|
[AllowAnonymous]
|
|
public class TestController(IServiceProvider serviceProvider) : AdminControllerBase(serviceProvider)
|
|
{
|
|
/// <summary>
|
|
/// 测试接口
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public string Index()
|
|
{
|
|
return "Hello World";
|
|
}
|
|
} |