diff options
author | 2019-01-03 13:55:15 -0800 | |
---|---|---|
committer | 2019-01-03 13:55:15 -0800 | |
commit | 2bf0f688f895aa19f976051e30b967a6187e27b4 (patch) | |
tree | 6e3425e59eafaf05546e348bd2182a08a7fbe0f0 /go.mod | |
parent | a3b25c3f7761b0c8d4cd3871e335a32a929f8dda (diff) | |
download | sally-2bf0f688f895aa19f976051e30b967a6187e27b4.tar.gz sally-2bf0f688f895aa19f976051e30b967a6187e27b4.tar.zst sally-2bf0f688f895aa19f976051e30b967a6187e27b4.zip |
template: Bundle in binary with bindata (#36)
This uses go-bindata/go-bindata to bundle the template in the binary.
I also realized that the handler test was now broken because we were
checking the exact contents of the index page in the test. This change
fixes that too.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2,6 +2,7 @@ module go.uber.org/sally require ( github.com/davecgh/go-spew v1.1.1 // indirect + github.com/go-bindata/go-bindata v1.0.0 github.com/golang/lint v0.0.0-20181217174547-8f45f776aaf1 github.com/julienschmidt/httprouter v1.2.0 github.com/kisielk/gotool v1.0.0 // indirect |