From 5d581f1526437b4dde8d16600883958cb47eec73 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 20 Jun 2026 13:57:13 +0200 Subject: go.mod: Use braces This makes the file less repetitive and diffs more readable. --- go.mod | 10 +++++----- 1 file 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 +) -- cgit v1.3.1