blob: d694ba5457cc43cf7b0fea3a12b3c716d475676e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use colored::Colorize;
fn main() {
println!("Welcome to Butchunker!");
println!(
"Please add your policy crates to the `{}` directory",
"./policy/".bright_green()
);
println!(
"Then run `{}` to update the policy registry",
"cargo run --bin butckrepo-refresh".bright_green()
);
}
|