Added testers

This commit is contained in:
2023-07-12 21:13:11 +02:00
parent 4627e103fe
commit bd2bba08da
83 changed files with 74558 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace EonaCat.Logger.Web.Pages
{
public class IndexModel : PageModel
{
private readonly ILogger<IndexModel> _logger;
public IndexModel(ILogger<IndexModel> logger)
{
_logger = logger;
}
public void OnGet()
{
}
}
}