github-actions[bot]
deploy from github actions 2026-06-18
c8ae75d
Raw
History Blame Contribute Delete
257 Bytes
import { getMachineId } from "@/shared/utils/machine";
import CLIToolsPageClient from "./CLIToolsPageClient";
export default async function CLIToolsPage() {
const machineId = await getMachineId();
return <CLIToolsPageClient machineId={machineId} />;
}