mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Copyright (c) HashiCorp, Inc.
 | 
						|
 * SPDX-License-Identifier: MPL-2.0
 | 
						|
 */
 | 
						|
 | 
						|
/* eslint-env node */
 | 
						|
/* eslint-disable ember/avoid-leaking-state-in-ember-objects */
 | 
						|
/* eslint-disable node/no-extraneous-require */
 | 
						|
'use strict';
 | 
						|
 | 
						|
const EngineAddon = require('ember-engines/lib/engine-addon');
 | 
						|
 | 
						|
module.exports = EngineAddon.extend({
 | 
						|
  name: 'kmip',
 | 
						|
 | 
						|
  lazyLoading: {
 | 
						|
    enabled: true,
 | 
						|
  },
 | 
						|
 | 
						|
  isDevelopingAddon() {
 | 
						|
    return true;
 | 
						|
  },
 | 
						|
});
 |