implement notification bridge

This commit is contained in:
Gregor Biswanger
2017-10-03 04:40:37 +02:00
parent a0a3e6fc15
commit b16e0b0bf9
8 changed files with 96 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace ElectronNET.WebApp.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
}
}