summaryrefslogtreecommitdiffstats
path: root/src/uu/false/src/false.rs
blob: 17c6811290c9f60923bbb47e972feb5249de8f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//  * This file is part of the uutils coreutils package.
//  *
//  * (c) Jordi Boggiano <j.boggiano@seld.be>
//  *
//  * For the full copyright and license information, please view the LICENSE
//  * file that was distributed with this source code.

use clap::App;
use uucore::executable;

pub fn uumain(args: impl uucore::Args) -> i32 {
    uu_app().get_matches_from(args);
    1
}

pub fn uu_app() -> App<'static, 'static> {
    App::new(executable!())
}