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