mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 03:27:01 +02:00
14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
name: require('./package').name,
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
};
|