Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo/CosmosDBMongoWebJobsStartup.cs (14 lines of code) (raw):
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo;
using Microsoft.Azure.WebJobs.Hosting;
[assembly: WebJobsStartup(typeof(CosmosDBMongoWebJobsStartup))]
namespace Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo
{
public class CosmosDBMongoWebJobsStartup : IWebJobsStartup
{
public void Configure(IWebJobsBuilder builder)
{
builder.AddCosmosDBMongo();
}
}
}