From 54e42147b15c4ffc13c60a73292d15b1f5132aba Mon Sep 17 00:00:00 2001 From: Luxferre Date: Wed, 5 Aug 2026 08:38:21 +0300 Subject: [PATCH] added banner --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index 5f36ccd..76bcc0d 100644 --- a/main.go +++ b/main.go @@ -26,6 +26,12 @@ func main() { csvUpdater := flag.String("csv-updater", "", "Command to run to update the configuration CSV file") csvUpdateInterval := flag.Int("csv-update-interval", 10, "Interval in minutes with which to run the CSV updater command") retryDelayMs := flag.Int("retry-delay", 100, "Base delay in milliseconds for Fibonacci failover retries (0 to disable)") + flag.Usage = func() { + fmt.Fprintln(flag.CommandLine.Output(), "Dynagate LLM gateway by Luxferre (https://luxferre.top)") + fmt.Fprintln(flag.CommandLine.Output()) + fmt.Fprintf(flag.CommandLine.Output(), "Usage of %s:\n", os.Args[0]) + flag.PrintDefaults() + } flag.Parse() retryDelay := time.Duration(*retryDelayMs) * time.Millisecond