oqtane.framework/Oqtane.Shared/Interfaces/IClientStartup.cs
2020-05-12 10:00:28 +02:00

12 lines
293 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace Oqtane.Services
{
public interface IClientStartup
{
// This method gets called by the runtime. Use this method to add services to the container.
void ConfigureServices(IServiceCollection services);
}
}