bunext/dist/index.js
2026-03-21 17:08:04 +01:00

10 lines
264 B
JavaScript

import bunextInit from "./functions/bunext-init";
import bunextRequestHandler from "./functions/server/bunext-req-handler";
import { log } from "./utils/log";
const bunext = {
bunextRequestHandler,
bunextLog: log,
bunextInit,
};
export default bunext;