From eb9f25e328f50d9b65d72c992d44368e4cea4656 Mon Sep 17 00:00:00 2001 From: rasul Date: Sat, 26 Oct 2019 08:37:13 -0500 Subject: [PATCH] Self instead of Proc --- src/proc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proc.rs b/src/proc.rs index cc76a0c..1804185 100644 --- a/src/proc.rs +++ b/src/proc.rs @@ -10,7 +10,7 @@ pub struct Proc { } impl Proc { - pub fn start(app: App) -> Result { + pub fn start(app: App) -> Result { info!("starting application {}", &app.name); let mut command = Command::new(&app.command);