using DS.Module.DjyServiceStatus;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.PrintModule
{
///
/// 注入大简云服务项目
///
public static class DjyModuleInstall
{
///
///
///
///
///
public static void AddDjyModuleInstall(this IServiceCollection services)
{
if (services == null) throw new ArgumentNullException(nameof(services));
services.AddScoped();
}
}
}