mirror of https://github.com/status-im/consul.git
24 lines
379 B
JavaScript
24 lines
379 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
description: 'Generates a Consul HTTP ember-data model',
|
|
|
|
availableOptions: [],
|
|
|
|
root: __dirname,
|
|
|
|
locals(options) {
|
|
// Return custom template variables here.
|
|
return {};
|
|
},
|
|
|
|
// afterInstall(options) {
|
|
// // Perform extra work here.
|
|
// }
|
|
};
|