diff options
author | EuAndreh <eu@euandre.org> | 2024-02-25 05:01:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-02-25 05:01:00 -0300 |
commit | 458bf0fc628d9bcf6a59a0efb898045266dab6ba (patch) | |
tree | bb538753668dad5abc7eec4a65bf4f233b34d93a /src/api.mjs | |
parent | Normalize how modules import and name each other (diff) | |
download | papod-458bf0fc628d9bcf6a59a0efb898045266dab6ba.tar.gz papod-458bf0fc628d9bcf6a59a0efb898045266dab6ba.tar.xz |
Explicit import from "node:process"; move log() to hero.mjs
Diffstat (limited to 'src/api.mjs')
-rw-r--r-- | src/api.mjs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api.mjs b/src/api.mjs index 2ec7cbf..fb62adc 100644 --- a/src/api.mjs +++ b/src/api.mjs @@ -1,3 +1,5 @@ +import process from "node:process"; + import * as ircd from "./ircd.mjs"; import * as web from "./web.mjs"; |