Fix buidl by adding necessary using directives for async and DI setup.

This commit is contained in:
David Roth
2025-12-10 21:48:42 +01:00
parent 70ffebf39d
commit 5f76804065
2 changed files with 3 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
using ElectronNET.API;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
namespace ElectronNET.Samples.ElectronHostHook.Controllers
{

View File

@@ -1,4 +1,6 @@
using ElectronNET.API;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace ElectronNET.Samples.ElectronHostHook
{