public static IConveyBuilder AddMinio(this IConveyBuilder builder, string sectionName = SectionName)
        {
            if (string.IsNullOrWhiteSpace(sectionName))
            {
                sectionName = SectionName;
            }

            var blobStorageOptions = builder.GetOptions <MinioOptions>(sectionName);

            return(builder.AddMinio(blobStorageOptions));
        }