mirror of
https://github.com/metrico/qryn.git
synced 2025-03-14 10:07:18 +00:00
16 lines
229 B
JavaScript
16 lines
229 B
JavaScript
/*
|
|
* qryn: polyglot observability API
|
|
* (C) 2018-2024 QXIP BV
|
|
*/
|
|
|
|
import {init} from './qryn_node_wrapper.js'
|
|
import {bun} from './common.js'
|
|
import bunInit from './qryn_bun.mjs'
|
|
|
|
|
|
if (bun()) {
|
|
bunInit()
|
|
} else {
|
|
init()
|
|
}
|