Files
SecMPS/api_sqlsugar/VolPro.WebApi/Controllers/ApiHomeController.cs
2026-05-15 23:22:48 +08:00

21 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using VolPro.Core.EFDbContext;
using Microsoft.AspNetCore.Authorization;
namespace VolPro.WebApi.Controllers
{
[AllowAnonymous]
public class ApiHomeController : Controller
{
public IActionResult Index()
{
return new RedirectResult("/swagger/");
}
}
}