A Docker-like CLI and HTTP API for managing headless VMs

run format

+2 -2
+2 -2
src/subcommands/images.ts
··· 13 13 14 14 const createTable = () => 15 15 Effect.succeed( 16 - new Table(["REPOSITORY", "TAG", "IMAGE ID", "CREATED", "SIZE"]) 16 + new Table(["REPOSITORY", "TAG", "IMAGE ID", "CREATED", "SIZE"]), 17 17 ); 18 18 19 19 const populateTable = (table: Table, images: Image[]) => ··· 46 46 Effect.all([listImages(), createTable()]), 47 47 Effect.flatMap(([images, table]) => populateTable(table, images)), 48 48 Effect.flatMap(displayTable), 49 - Effect.catchAll(handleError) 49 + Effect.catchAll(handleError), 50 50 ); 51 51 52 52 export default async function () {