File size: 257 Bytes
88c4c60
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { getMachineId } from "@/shared/utils/machine";
import CLIToolsPageClient from "./CLIToolsPageClient";

export default async function CLIToolsPage() {
  const machineId = await getMachineId();
  return <CLIToolsPageClient machineId={machineId} />;
}