From 9d8d243a7e87775b1a5d0e02c953fb9213d04938 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 14 Aug 2019 21:48:43 -0400 Subject: Use Go modules I chose this revision as the minumum revision of golang.org/x/sys because it's what parabola-hackers NSHD uses. --- go.mod | 5 +++++ go.sum | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 go.mod create mode 100644 go.sum 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= -- cgit v1.2.3