mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
13 lines
199 B
JavaScript
13 lines
199 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import BaseAdapter from './base';
|
|
|
|
export default BaseAdapter.extend({
|
|
pathForType() {
|
|
return 'template';
|
|
},
|
|
});
|