d6f6254a92
.NET Build and Publish / build (push) Has been cancelled
* add file import resource * disabled health check * re-enable healthcheck * git ignore volumes * disabled importer * start_period * Skipped broken tests * Verify tests * Fixed tests * reverted volumes path * Update docker-compose.yml
14 lines
471 B
C#
14 lines
471 B
C#
using Speckle.InterfaceGenerator;
|
|
using Speckle.Sdk.Credentials;
|
|
using Speckle.Sdk.Helpers;
|
|
using Speckle.Sdk.Logging;
|
|
|
|
namespace Speckle.Sdk.Api.Blob;
|
|
|
|
[GenerateAutoInterface]
|
|
public sealed class BlobApiFactory(ISpeckleHttp speckleHttp, ISdkActivityFactory activityFactory) : IBlobApiFactory
|
|
{
|
|
public IBlobApi Create(Account account, int timeoutSeconds = BlobApi.DEFAULT_TIMEOUT_SECONDS) =>
|
|
new BlobApi(speckleHttp, activityFactory, account, timeoutSeconds);
|
|
}
|