feat(transport): scaffold ScadaLink.Transport project + test projects
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace ScadaLink.Transport;
|
||||
|
||||
public static class ServiceCollectionExtensions
|
||||
{
|
||||
public const string OptionsSection = "ScadaLink:Transport";
|
||||
|
||||
public static IServiceCollection AddTransport(this IServiceCollection services)
|
||||
{
|
||||
ArgumentNullException.ThrowIfNull(services);
|
||||
// Concrete services and options binding added in later tasks.
|
||||
return services;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user