Publish directory

This commit is contained in:
2025-05-30 16:15:48 +02:00
parent b3b39f583a
commit 37c418a869
1164 changed files with 128153 additions and 0 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>();
}
}
}