Adds code

This commit is contained in:
Janus Knudsen 2025-01-03 16:21:03 +00:00 committed by Janus C. H. Knudsen
commit 269bf50c78
33 changed files with 1489 additions and 0 deletions

View file

@ -0,0 +1,25 @@
using Akka.Actor;
using Microsoft.ApplicationInsights;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Pages
{
public class IndexModel : PageModel
{
private readonly TelemetryClient _telemetry;
public IndexModel(TelemetryClient telemetry, Akka.Actor.ActorSystem system)
{
_telemetry = telemetry;
}
public void OnGet()
{
}
}
}