From 1e0f5625cd42a03b65de1e911af0541eca7c7b8b Mon Sep 17 00:00:00 2001 From: TheEdgeOfRage Date: Tue, 9 Jan 2024 10:34:04 +0100 Subject: [PATCH] Fix go.mod for rpn calc --- .chezmoiignore | 2 ++ go.mod | 2 ++ go.sum | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 go.sum diff --git a/.chezmoiignore b/.chezmoiignore index 8e2c424..bf57964 100644 --- a/.chezmoiignore +++ b/.chezmoiignore @@ -1,4 +1,6 @@ LICENSE init.sh +go.mod +go.sum custom_colemak config_template.yaml diff --git a/go.mod b/go.mod index 0eb4371..ce30d0e 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,5 @@ module gitea.theedgeofrage.com/theedgeofrage/dotfiles go 1.21.5 + +require gitea.theedgeofrage.com/theedgeofrage/rpn v0.0.1 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..a36300b --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +gitea.theedgeofrage.com/theedgeofrage/rpn v0.0.1 h1:wicM7tt30dGoJH1GhyqE9j3/g6ChP6OEVMRyBmoApUk= +gitea.theedgeofrage.com/theedgeofrage/rpn v0.0.1/go.mod h1:9fiUuhrT1n71psLZGAvan23iRhH9q9TxiCaXt0Gv/ck=