aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-12-14 09:51:15 -0500
committerMitch Riedstra <mitch@riedstra.us>2019-12-14 09:51:15 -0500
commitb2056fbf48849e321389977e3fdbb0f5841822c4 (patch)
tree0f0b993d1f2ea0221067e4f689e606e33ba47bbd /go.mod
parentc19536be6e4f8733af329204a50ffc254a679ee5 (diff)
downloadgo-website-b2056fbf48849e321389977e3fdbb0f5841822c4.tar.gz
go-website-b2056fbf48849e321389977e3fdbb0f5841822c4.tar.xz
Tidy up the server command, pull the handlers into the page library. Convert to go modules. Add a build script and version to the command
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod9
1 files changed, 9 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..e493293
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,9 @@
+module git.riedstra.us/mitch/go-website
+
+go 1.13
+
+require (
+ github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
+ gopkg.in/russross/blackfriday.v2 v2.0.0
+ gopkg.in/yaml.v2 v2.2.7
+)