From 04a1bb4ccbb183e4f7f5ec6a22ebac3954cc6416 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Thu, 9 May 2024 04:47:19 +0200 Subject: [PATCH] Remove old Options --- config/config.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/config.go b/config/config.go index cf61b60..a09884c 100644 --- a/config/config.go +++ b/config/config.go @@ -7,13 +7,13 @@ type Config struct { } type Server struct { - Address string - Database string - HealthCheckCommand string - TranscodeCommand string + Address string + Database string } type Worker struct { - Address string - Name string + ID string + Address string + Name string + FFmpegPath string }