json2file/
lib.rs

1// Copyright ⓒ 2021 Tonye Jack.
2// Licensed under the MIT license
3// (see LICENSE or <http://opensource.org/licenses/MIT>).
4
5//! # json2file provides a convenient way to write JSON data to file(s).
6//!
7//! It includes a [crate::writer] module that takes input JSON data and a set of arguments specifying the output file(s) to write to, and writes the data to the specified file(s) in the specified format.
8//!
9//! This library is designed to be easy to use and flexible, with support for writing JSON data to multiple files in different formats, including JSON, and plain text.
10
11#![deny(missing_docs)]
12
13/// The writer module provides the functionality for writing JSON data to file(s).
14pub mod writer;