Files
iMES_Net/iMES.WebApi/Controllers/ApiHomeController.cs

21 lines
445 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using iMES.Core.EFDbContext;
using Microsoft.AspNetCore.Authorization;
namespace iMES.WebApi.Controllers
{
[AllowAnonymous]
public class ApiHomeController : Controller
{
public IActionResult Index()
{
return new RedirectResult("/swagger/");
}
}
}