mirror of
https://github.com/status-im/consul.git
synced 2025-03-03 23:00:44 +00:00
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Service from '@ember/service';
|
|
|
|
import Clipboard from 'clipboard';
|
|
|
|
export default class OsService extends Service {
|
|
execute() {
|
|
return new Clipboard(...arguments);
|
|
}
|
|
}
|