mirror of
https://github.com/bitwarden/server.git
synced 2025-04-28 08:12:22 -05:00
18 lines
309 B
C#
18 lines
309 B
C#
using System;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Billing.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
/*
|
|
[Authorize]
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
*/
|
|
}
|
|
}
|