Skip to content

Commit

Permalink
fix: export resolveCodec
Browse files Browse the repository at this point in the history
  • Loading branch information
cha0s committed Dec 4, 2024
1 parent 0d43046 commit 5626729
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Aliases, Codecs} from './codecs.js';
import {Aliases, Codecs, resolveCodec} from './codecs.js';
import Schema from './schema.js';

const codecs = import.meta.glob(
Expand All @@ -10,4 +10,4 @@ for (const path in codecs) {
Codecs[key] = codecs[path];
}

export {Aliases, Codecs, Schema};
export {Aliases, Codecs, resolveCodec, Schema};

0 comments on commit 5626729

Please sign in to comment.