file-storage/FileStorageService.www/Controllers/ErrorController.cs

13 lines
213 B
C#

using System.Net;
using Microsoft.AspNetCore.Mvc;
namespace FileStorageService.www.Controllers;
public class ErrorController : Controller
{
// GET
public IActionResult Status(int id)
{
return View(id);
}
}