From 22f3b6efcafd26925daea77a331e401c174cde68 Mon Sep 17 00:00:00 2001 From: jabuxas Date: Thu, 19 Sep 2024 22:28:17 -0300 Subject: [PATCH] style: group consts together --- spire.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spire.go b/spire.go index ac546fe..6eccce5 100644 --- a/spire.go +++ b/spire.go @@ -9,8 +9,10 @@ import ( "time" ) -const TMPDIR = "/tmp/spire" -const PAYLOAD = TMPDIR + "/payload.json" +const ( + TMPDIR = "/tmp/spire" + PAYLOAD = TMPDIR + "/payload.json" +) func main() { get_cache()