mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 13:05:40 +00:00
12 lines
300 B
C#
12 lines
300 B
C#
using NftFaucetRadzen.Plugins.UploadPlugins.NftStorage.Uploaders;
|
|
|
|
namespace NftFaucetRadzen.Plugins.UploadPlugins.NftStorage;
|
|
|
|
public class NftStorageUploadPlugin : IUploadPlugin
|
|
{
|
|
public IReadOnlyCollection<IUploader> Uploaders { get; } = new[]
|
|
{
|
|
new NftStorageUploader(),
|
|
};
|
|
}
|