27bb03bbc0
* adding copyright header * fix fmt and a test
15 lines
263 B
JavaScript
15 lines
263 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export function initialize(appInstance) {
|
|
const service = appInstance.lookup('service:csp-event');
|
|
service.attach();
|
|
}
|
|
|
|
export default {
|
|
name: 'track-csp-event',
|
|
initialize,
|
|
};
|