repomgr/Pages/Index.cshtml.cs

17 lines
341 B
C#
Raw Normal View History

2019-07-05 00:36:10 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace repomgr.Pages
{
public class IndexModel : PageModel
{
public void OnGet()
{
2019-07-05 23:12:11 +02:00
Program.Repo.ReadIndex();
2019-07-05 00:36:10 +02:00
}
}
}