feat(transport): scaffold ScadaLink.Transport project + test projects

This commit is contained in:
Joseph Doherty
2026-05-24 03:57:07 -04:00
parent f32b59a557
commit 7e51274812
5 changed files with 106 additions and 0 deletions
@@ -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;
}
}