Files
SpeckleAutomateDotnetExample/TestAutomateFunction/ServiceRegistration.cs
T
Jedd Morgan 062e08b1b2 First pass
2025-05-28 23:37:47 +01:00

16 lines
418 B
C#

using Microsoft.Extensions.DependencyInjection;
using Speckle.Automate.Sdk;
namespace TestAutomateFunction;
public static class ServiceRegistration
{
public static IServiceProvider GetServiceProvider()
{
var serviceCollection = new ServiceCollection();
serviceCollection.AddAutomateSdk();
serviceCollection.AddSingleton<AutomateFunction>();
return serviceCollection.BuildServiceProvider();
}
}