use gong::options::{OptionSet, OptionsMode};
static BASE_OPTS: OptionSet = gong_option_set_fixed!(
[
gong_longopt!("help"),
gong_longopt!("foo"),
gong_longopt!("version"),
gong_longopt!("foobar"),
gong_longopt!("hah", true),
gong_longopt!("ábc"), gong_longopt!("ƒƒ", true), ],
[
gong_shortopt!('h'),
gong_shortopt!('❤'),
gong_shortopt!('x'),
gong_shortopt!('o', true),
gong_shortopt!('\u{030a}'), gong_shortopt!('Ɛ', true), ],
OptionsMode::Standard,
true
);
pub fn get_base() -> &'static OptionSet<'static, 'static> {
&BASE_OPTS
}