summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2026-06-20 13:57:13 +0200
committerxengineering <me@xengineering.eu>2026-06-20 14:08:03 +0200
commit5d581f1526437b4dde8d16600883958cb47eec73 (patch)
treed5093a94b78d6de8f1b87640833e91e7ef78bc1b /go.mod
parent4ec2d77a60dd5242c428537c0d3e719954a3bb45 (diff)
downloadfinserv-5d581f1526437b4dde8d16600883958cb47eec73.tar
finserv-5d581f1526437b4dde8d16600883958cb47eec73.tar.zst
finserv-5d581f1526437b4dde8d16600883958cb47eec73.zip
go.mod: Use braces
This makes the file less repetitive and diffs more readable.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod10
1 files changed, 5 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index 975155b..22aa786 100644
--- a/go.mod
+++ b/go.mod
@@ -2,8 +2,8 @@ module xengineering.eu/finserv
go 1.26.3
-require github.com/gorilla/mux v1.8.1
-
-require github.com/mattn/go-sqlite3 v1.14.44
-
-require golang.org/x/crypto v0.52.0
+require (
+ github.com/gorilla/mux v1.8.1
+ github.com/mattn/go-sqlite3 v1.14.44
+ golang.org/x/crypto v0.52.0
+)