private static bool UsingEtcd(IFileConfigurationRepository fileConfigRepo)
 {
     return(fileConfigRepo.GetType() == typeof(EtcdFileConfigurationRepository));
 }
 private static bool UsingZookeeper(IFileConfigurationRepository fileConfigRepo)
 {
     return(fileConfigRepo.GetType() == typeof(ZookeeperFileConfigurationRepository));
 }
예제 #3
0
 private static bool UsingAbp(IFileConfigurationRepository fileConfigRepo)
 {
     return(fileConfigRepo.GetType() == typeof(AbpEfCoreFileConfigurationRepository));
 }