summaryrefslogtreecommitdiff
path: root/args
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-07 19:45:44 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-07 19:48:20 -0600
commitee49015cc90e6c136ad94243fffc9241b9506a36 (patch)
tree4cc6751a33a990c9ab03154bb2a4d10386c21c4d /args
parent86c4ad160a0442713680ff1eaa85ead635b10f8f (diff)
downloadhatecomputers.club-ee49015cc90e6c136ad94243fffc9241b9506a36.tar.gz
hatecomputers.club-ee49015cc90e6c136ad94243fffc9241b9506a36.zip
use correct address format, never trust copilot ugghhgghhghg
Diffstat (limited to 'args')
-rw-r--r--args/args.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/args/args.go b/args/args.go
index 8465fc8..09c96be 100644
--- a/args/args.go
+++ b/args/args.go
@@ -37,7 +37,7 @@ func GetArgs() (*Arguments, error) {
databasePath := flag.String("database-path", "./hatecomputers.db", "Path to the SQLite database")
templatePath := flag.String("template-path", "./templates", "Path to the template directory")
staticPath := flag.String("static-path", "./static", "Path to the static directory")
- dnsResolvers := flag.String("dns-resolvers", "1.1.1.1,1.0.0.1", "Comma-separated list of DNS resolvers")
+ dnsResolvers := flag.String("dns-resolvers", "1.1.1.1:53,1.0.0.1:53", "Comma-separated list of DNS resolvers")
scheduler := flag.Bool("scheduler", false, "Run scheduled jobs via cron")
migrate := flag.Bool("migrate", false, "Run the migrations")