2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2019-06-21 10:42:40 +00:00
|
|
|
import Service from '@ember/service';
|
|
|
|
|
2019-07-01 20:19:11 +00:00
|
|
|
import Clipboard from 'clipboard';
|
2019-06-21 10:42:40 +00:00
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
export default class OsService extends Service {
|
2021-07-06 15:56:36 +00:00
|
|
|
execute() {
|
|
|
|
return new Clipboard(...arguments);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
}
|