mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
Merge pull request #3877 from cakebaker/link_move_use_statement
link: move use statement after copyright
This commit is contained in:
commit
72d7120635
1 changed files with 1 additions and 1 deletions
|
@ -1,10 +1,10 @@
|
||||||
use clap::builder::ValueParser;
|
|
||||||
// * This file is part of the uutils coreutils package.
|
// * This file is part of the uutils coreutils package.
|
||||||
// *
|
// *
|
||||||
// * (c) Michael Gehring <mg@ebfe.org>
|
// * (c) Michael Gehring <mg@ebfe.org>
|
||||||
// *
|
// *
|
||||||
// * For the full copyright and license information, please view the LICENSE
|
// * For the full copyright and license information, please view the LICENSE
|
||||||
// * file that was distributed with this source code.
|
// * file that was distributed with this source code.
|
||||||
|
use clap::builder::ValueParser;
|
||||||
use clap::{crate_version, Arg, Command};
|
use clap::{crate_version, Arg, Command};
|
||||||
use std::ffi::OsString;
|
use std::ffi::OsString;
|
||||||
use std::fs::hard_link;
|
use std::fs::hard_link;
|
||||||
|
|
Loading…
Reference in a new issue