mirror of
https://github.com/certd/certd.git
synced 2026-05-15 20:47:31 +08:00
chore:
This commit is contained in:
@@ -5,6 +5,7 @@ import commons from "./util.common";
|
||||
import * as mitt from "./util.mitt";
|
||||
import { routerUtils } from "./util.router";
|
||||
import { treeUtils } from "./util.tree";
|
||||
import { hashUtils } from "./util.hash";
|
||||
export const util = {
|
||||
...envs,
|
||||
...sites,
|
||||
@@ -12,5 +13,6 @@ export const util = {
|
||||
...commons,
|
||||
...mitt,
|
||||
router: routerUtils,
|
||||
tree: treeUtils
|
||||
tree: treeUtils,
|
||||
hash: hashUtils
|
||||
};
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
export const hashUtils = {
|
||||
md5(data: string) {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user