mirror of
https://github.com/ruvnet/RuView
synced 2026-07-30 18:41:42 +00:00
2b7853b18f
* feat(ruview): add secure community metaharness flywheel * fix(ruview): canonicalize manifest line endings
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
// SPDX-License-Identifier: MIT
|
|
import claudeCode from './claude-code.js';
|
|
import codex from './codex.js';
|
|
export { claudeCode, codex };
|
|
export const HOSTS = Object.freeze({ 'claude-code': claudeCode, codex });
|
|
export function getHost(name) {
|
|
const host = HOSTS[name];
|
|
if (!host) throw new Error(`Unsupported host: ${name}`);
|
|
return host;
|
|
}
|