DotNetCorePlugins/samples/dynamic-implementation/Contracts/IPluginFactory.cs
2021-01-30 15:41:10 -08:00

13 lines
322 B
C#

// Copyright (c) Nate McMaster.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Extensions.DependencyInjection;
namespace Contracts
{
public interface IPluginFactory
{
void Configure(IServiceCollection services);
}
}