From 4d1cbdf2fc0d79b99589327eb378306c557d346a Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 23 Apr 2020 15:20:54 +0200 Subject: tell users when they use a guest account and inform them about server admin --- src/config.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 708945d..0adeb9e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -19,4 +19,8 @@ pub struct Config { #[structopt(short, long, env="ASCIIFARM_USER_DIR", help="The directory in which the user sign-in data lives")] pub user_dir: Option, + + #[structopt(long, env="USER", help="The name(s) of the server admin(s)")] + pub admins: String, + } -- cgit