From 9e51c17ac267d908776a9371784bc4fd5370425a Mon Sep 17 00:00:00 2001 From: rascul Date: Thu, 21 Jul 2022 17:51:56 -0500 Subject: [PATCH] space out the struct members with a newline --- src/app.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app.rs b/src/app.rs index 6f0a8b1..059126c 100644 --- a/src/app.rs +++ b/src/app.rs @@ -9,18 +9,25 @@ use crate::result::Result; pub struct App { /// name of the app pub name: String, + /// path/command to run pub command: String, + /// arguments pub args: Option>, + /// should the app be restarted if it exits successfully pub restart_on_success: Option, + /// should the app be restarted if it exits unsuccessfully pub restart_on_failure: Option, + /// should the app be restarted if it is terminated pub restart_on_terminate: Option, + /// on sup startup, should we wait for this app to run before continuting pub wait: Option, + /// should this app keep sup from exiting, if it's running pub hold: Option, }