2018-03-19 02:07:36 +00:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
2018-03-28 22:08:49 +00:00
|
|
|
|
using BotSharp.Core.Loader;
|
2018-03-19 02:07:36 +00:00
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.AspNetCore.Builder
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class InitLoaderBuilderExtensions
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Initialize Loader
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="app"></param>
|
|
|
|
|
|
public static void UseInitLoader(this IApplicationBuilder app)
|
|
|
|
|
|
{
|
|
|
|
|
|
new InitializationLoader().Load();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|