diff options
author | Luke Shumaker <lukeshu@datawire.io> | 2019-08-14 21:48:43 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@datawire.io> | 2019-08-14 22:19:27 -0400 |
commit | 9d8d243a7e87775b1a5d0e02c953fb9213d04938 (patch) | |
tree | 8fc91830db3a17ad3de3b0e7468279d41f89ecc8 | |
parent | 059c8aa57eee31484039deadc531851287b34e06 (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.mod | 5 | ||||
-rw-r--r-- | go.sum | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,5 @@ +module git.lukeshu.com/go/libsystemd + +go 1.12 + +require golang.org/x/sys v0.0.0-20180425194835-bb9c189858d9 @@ -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= |