From 52fcf1e37f38dd37a564f92da623d256a696f850 Mon Sep 17 00:00:00 2001 From: Antony Date: Wed, 24 Mar 2021 11:24:54 +0100 Subject: [PATCH] Added defaults Co-authored-by: Jakob --- config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 137b921..eb1e2c0 100644 --- a/config/config.go +++ b/config/config.go @@ -247,7 +247,7 @@ type Configuration struct { // if the debug flag is passed through the command line arguments. Debug bool - AppName string `json:"app_name" yaml:"app_name"` + AppName string `default:"Pterodactyl" json:"app_name" yaml:"app_name"` // A unique identifier for this node in the Panel. Uuid string @@ -619,4 +619,4 @@ func getSystemName() (string, error) { return "", err } return release["ID"], nil -} \ No newline at end of file +}