From 289535e438690abc4d3c76fbb86078f4f56ccb02 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Wed, 29 Jul 2020 16:06:22 +0000 Subject: [PATCH] honestly don't know if this is OK or not adding a nested Go modules file because I don't want to update tea's go.mod file when the examples are run. I don't want to accidentally check them in. --- examples/go.mod | 8 ++++++++ examples/go.sum | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 examples/go.mod create mode 100644 examples/go.sum diff --git a/examples/go.mod b/examples/go.mod new file mode 100644 index 0000000..ab2c86f --- /dev/null +++ b/examples/go.mod @@ -0,0 +1,8 @@ +module github.com/jordanorelli/tea/examples + +go 1.14 + +require ( + github.com/jordanorelli/tea v0.0.3 + github.com/smartystreets/goconvey v1.6.4 +) diff --git a/examples/go.sum b/examples/go.sum new file mode 100644 index 0000000..c2d123b --- /dev/null +++ b/examples/go.sum @@ -0,0 +1,14 @@ +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/jordanorelli/tea v0.0.3 h1:6FNc5NE3O+2RDgK9nq3x8hZ0b5w5bFcz94VG67jbRbo= +github.com/jordanorelli/tea v0.0.3/go.mod h1:mnnRKfuTTk8d+3rcOC6TIiBOLVG8RQitOtFtCfQo8Bw= +github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= +github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=