Skip to content

Commit

Permalink
use correct import
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Jan 5, 2024
1 parent b2a1c9d commit bbffac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/ozone/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require('dd-trace') // Only works with commonjs
// Tracer code above must come before anything else
const path = require('path')
const {
Ozone,
OzoneService,
envToCfg,
envToSecrets,
readEnv,
Expand All @@ -24,7 +24,7 @@ const main = async () => {
const env = readEnv()
const cfg = envToCfg(env)
const secrets = envToSecrets(env)
const ozone = await Ozone.create(cfg, secrets)
const ozone = await OzoneService.create(cfg, secrets)

await ozone.start()

Expand Down

0 comments on commit bbffac2

Please sign in to comment.