summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@datawire.io>2019-08-14 21:48:43 -0400
committerLuke Shumaker <lukeshu@datawire.io>2019-08-14 22:19:27 -0400
commit9d8d243a7e87775b1a5d0e02c953fb9213d04938 (patch)
tree8fc91830db3a17ad3de3b0e7468279d41f89ecc8
parent059c8aa57eee31484039deadc531851287b34e06 (diff)
Use Go modules
I chose this revision as the minumum revision of golang.org/x/sys because it's what parabola-hackers NSHD uses.
-rw-r--r--go.mod5
-rw-r--r--go.sum2
2 files changed, 7 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..01660d1
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module git.lukeshu.com/go/libsystemd
+
+go 1.12
+
+require golang.org/x/sys v0.0.0-20180425194835-bb9c189858d9
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..c77fc20
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,2 @@
+golang.org/x/sys v0.0.0-20180425194835-bb9c189858d9 h1:+wWbjU2lIhyVuf3l5jcSMKOCokMwx1eP/lpVWk1Ox0M=
+golang.org/x/sys v0.0.0-20180425194835-bb9c189858d9/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=