We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8208b5 commit fab5774Copy full SHA for fab5774
1 file changed
server/src/main.rs
@@ -32,11 +32,12 @@ struct Args {
32
#[tokio::main]
33
async fn main() -> Result<(), Error> {
34
tracing_subscriber::fmt::init();
35
- capability::drop_unnecessary_capabilities()?;
36
37
let args = Args::parse();
38
let mut secret = None;
39
+ capability::drop_unnecessary_capabilities()?;
40
+
41
if args.login {
42
let password = rpassword::prompt_password("Enter the login password: ")?;
43
if password.is_empty() {
0 commit comments