From: Simon Ruderich Date: Mon, 12 Aug 2019 06:31:47 +0000 (+0200) Subject: Add go.mod and go.sum X-Git-Tag: 0.1~20 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=9fa71384bdb85abab492a83a067e243b6d34298f Add go.mod and go.sum --- diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..60a4e0e --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module ruderich.org/simon/nsscash + +go 1.12 + +require ( + github.com/BurntSushi/toml v0.3.1 + github.com/pkg/errors v0.8.1 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..69a45f8 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=