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