fix #4562 - module template issue caused by gitignore

This commit is contained in:
sbwalker
2024-08-26 09:38:10 -04:00
parent 4ae8df9652
commit 592255284f
3 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,14 @@
using Microsoft.Extensions.DependencyInjection;
using Oqtane.Services;
using [Owner].Module.[Module].Services;
namespace [Owner].Module.[Module].Startup
{
public class ClientStartup : IClientStartup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<I[Module]Service, [Module]Service>();
}
}
}