import { Binary } from './binary'; /** * Proxies commands to the downloaded binary */ export const run = async (): Promise => { const binary = new Binary(); return binary.run(); }; /** * Downloads the amplify cli binary */ export const install = async (): Promise => { const binary = new Binary(); return binary.install(); }; // force version bump to 14.0.0