From 948c98f78545513f418e7fb465373130f83e0a0d Mon Sep 17 00:00:00 2001 From: rascul Date: Thu, 21 Jul 2022 19:01:28 -0500 Subject: [PATCH] Apps.app doesn't need to be public --- src/apps.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.rs b/src/apps.rs index e584dc2..31ef55e 100644 --- a/src/apps.rs +++ b/src/apps.rs @@ -16,7 +16,7 @@ use crate::result::Result; #[derive(Debug, Deserialize)] pub struct Apps { /// List of apps to start and monitor - pub app: Vec, + app: Vec, } impl Apps {