arvo-core
Version:
This core package contains all the core classes and components of the Arvo Event Driven System
14 lines (13 loc) • 470 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* ArvoExection class containing attribute constants for OpenTelemetry.
*/
// biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
var ArvoExecution = /** @class */ (function () {
function ArvoExecution() {
}
ArvoExecution.ATTR_SPAN_KIND = 'arvo.span.kind';
return ArvoExecution;
}());
exports.default = ArvoExecution;