Skip to content

Commit 5ca49e6

Browse files
committed
fix: remove unused console url env
1 parent f03b70e commit 5ca49e6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

internal/app/config.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ func NewConfig() (*Config, error) {
1919
debugEnabled, _ := strconv.ParseBool(os.Getenv("APP_DEBUG_ENABLED"))
2020

2121
cfg := Config{
22-
DebugEnabled: debugEnabled,
23-
AwsConsoleURL: os.Getenv("APP_AWS_CONSOLE_URL"),
24-
SlackToken: os.Getenv("APP_SLACK_TOKEN"),
25-
SlackChannel: os.Getenv("APP_SLACK_CHANNEL"),
22+
DebugEnabled: debugEnabled,
23+
SlackToken: os.Getenv("APP_SLACK_TOKEN"),
24+
SlackChannel: os.Getenv("APP_SLACK_CHANNEL"),
2625
}
2726

2827
missing := []string{}

0 commit comments

Comments
 (0)