@busy-hour/blaze
Version:
<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>
19 lines (18 loc) • 534 B
JavaScript
// src/index.ts
import "./types/validator.js";
import { BlazeCreator } from "./creator/index.js";
import { BlazeConfig } from "./internal/config/instance.js";
import { BlazeError } from "./internal/errors/index.js";
import { BlazeValidationError } from "./internal/errors/validation.js";
import { initializeServices } from "./loader/index.js";
import { Blaze, BlazeRouter, z } from "./router/index.js";
export {
Blaze,
BlazeConfig,
BlazeCreator,
BlazeError,
BlazeRouter,
BlazeValidationError,
initializeServices,
z
};