From dbe89aea49aaf31478b99e23af8aad9754f74a00 Mon Sep 17 00:00:00 2001 From: Vincent Vielle Date: Sun, 18 Feb 2024 10:14:20 +0100 Subject: [PATCH] Wokr on HTTP config --- http/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/config.go b/http/config.go index f9f1c6c..c70dd00 100644 --- a/http/config.go +++ b/http/config.go @@ -1,5 +1,5 @@ package http -type Config struct { +type HTTPServerConfig struct { Port uint16 `env:"HTTP_SERVER_PORT"` }