mirror of
https://github.com/certd/certd.git
synced 2026-07-12 16:27:34 +08:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
|
import sleep from "./util.sleep";
|
||
|
|
import { request } from "./util.request";
|
||
|
|
export * from "./util.log";
|
||
|
|
export const utils = {
|
||
|
|
sleep,
|
||
|
|
http: request,
|
||
|
|
};
|