mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 21:15:30 +00:00
12 lines
348 B
C#
12 lines
348 B
C#
using NftFaucetRadzen.Plugins.UploadPlugins.InfuraDedicatedGateway.Uploaders;
|
|
|
|
namespace NftFaucetRadzen.Plugins.UploadPlugins.InfuraDedicatedGateway;
|
|
|
|
public class InfuraDedicatedGatewayUploadPlugin : IUploadPlugin
|
|
{
|
|
public IReadOnlyCollection<IUploader> Uploaders { get; } = new[]
|
|
{
|
|
new InfuraDedicatedGatewayUploader(),
|
|
};
|
|
}
|