mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 17:34:00 +00:00
16 lines
492 B
Rust
16 lines
492 B
Rust
use doku::json::{AutoComments, CommentsStyle, Formatting, ObjectsStyle};
|
|
use lemmy_utils::settings::structs::Settings;
|
|
fn main() {
|
|
let fmt = Formatting {
|
|
auto_comments: AutoComments::none(),
|
|
comments_style: CommentsStyle {
|
|
separator: "#".to_owned(),
|
|
},
|
|
objects_style: ObjectsStyle {
|
|
surround_keys_with_quotes: false,
|
|
use_comma_as_separator: false,
|
|
},
|
|
..Default::default()
|
|
};
|
|
println!("{}", doku::to_json_fmt_val(&fmt, &Settings::default()));
|
|
}
|