* Switch to SPDX license format for all non-codegen files * Add test to ensure all committed JS files have SPDX header
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and contributors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { Client } from '@elastic/elasticsearch'
|
|
|
|
new Client({
|
|
node: 'http://localhost:9200',
|
|
auth: {
|
|
username: 'elastic',
|
|
password: 'changeme',
|
|
}
|
|
})
|