8000 Update main.rs · Allstreamer/rust-pip@6203d63 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6203d63

Browse files
committed
Update main.rs
- Added package_version to main
1 parent ff19416 commit 6203d63

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/main.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
use std::path::PathBuf;
22
use structopt::StructOpt;
33

4-
/// A basic example
5-
#[derive(StructOpt, Debug)]
6-
#[structopt(name = "rust-pip", about = "Python package manager written in Rust.")]
4+
mod package_version;
5+
6+
/// Python package manager written in Rust
7+
#[derive(Parser, Debug)]
8+
#[clap(global_setting = AppSettings::DeriveDisplayOrder)]
9+
710
enum Opt {
811
/// Install packages.
912
Install {},

0 commit comments

Comments
 (0)
0