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);
|
|
}
|
|
}
|