mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
12 lines
293 B
C#
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);
|
|
}
|
|
}
|