packages/cli/src/terminal/commands/handlers/attach/attachModule.ts
import type { NodeInstance } from '@xyo-network/node-model'
import { printError, printTitle } from '../../../../lib/index.js'
export const attachModule = (_node: NodeInstance) => {
printTitle('Attach Module')
printError('TODO')
return Promise.resolve()
}