avz 0.1.0

Blistering-fast Avro CLI tool — a modern replacement for avro-tools and fastavro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use aws_sdk_s3::Client as S3Client;

use crate::error::Result;

pub async fn execute(
    files: &[String],
    s3_client: &Option<S3Client>,
    count: usize,
    pretty: bool,
) -> Result<()> {
    super::cat::execute(files, s3_client, pretty, Some(count)).await
}