extern crate gflags_derive;
use gflags_derive::GFlags;
#[derive(GFlags)]
#[gflags(prefix)]
#[allow(dead_code)]
struct Config {
/// True if log messages should also be sent to STDERR
to_stderr: bool,
/// The directory to write log files to
dir: String,
}
fn main() {}