Fix lint.

This commit is contained in:
cpojer
2026-01-31 15:10:32 +09:00
parent e9f0be06eb
commit 84ac889e22

View File

@@ -18,18 +18,6 @@ const modelRegistryState = {
available: [] as Array<Record<string, unknown>>,
};
class AuthStorage {}
class ModelRegistry {
getAll() {
return modelRegistryState.models;
}
getAvailable() {
return modelRegistryState.available;
}
}
vi.mock("../config/config.js", () => ({
CONFIG_PATH: "/tmp/openclaw.json",
STATE_DIR: "/tmp/openclaw-state",