func handleDebugImport(ctx *cli.Context, client *daemon.Client) error { buf := &bytes.Buffer{} if _, err := io.Copy(buf, os.Stdin); err != nil { return err } return client.Import(buf.Bytes()) }