refactor: make loaded directory to remove confusion

This commit is contained in:
2026-06-28 22:44:28 +09:00
parent cb9582e80c
commit 087e8518ef
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { brainboxRoot } from "./loader";
import rootConfig from "./root";
import rootConfig from "./loaded/root";
export interface Config {
openrouterApiKey: string;

View File

@@ -1,5 +1,5 @@
import z from "zod";
import { parseConfigFile } from "./loader";
import { parseConfigFile } from "../loader";
const RootConfigSchema = z.object({
openrouter: z.object({ apiKey: z.string().min(1) }),