14 lines
416 B
C#
14 lines
416 B
C#
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
using Volo.Abp.Modularity;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Cassandra
|
|||
|
|
{
|
|||
|
|
public class CollectBusCassandraModule : AbpModule
|
|||
|
|
{
|
|||
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|||
|
|
{
|
|||
|
|
context.Services.Configure<CassandraConfiguration>(context.Services.GetConfiguration().GetSection("Cassandra"));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|