From 92d8b2b9bc0b3fdbaecbfc87978e3a2d4a4ffe82 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 22 Feb 2023 20:07:28 +0900 Subject: [PATCH] Create go.mod --- go.mod | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..fa12e8c --- /dev/null +++ b/go.mod @@ -0,0 +1,17 @@ +module github.com/gnh1201/tail2redis + +go 1.18 + +require ( + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect + github.com/fsnotify/fsnotify v1.4.9 // indirect + github.com/nxadm/tail v1.4.8 // indirect + github.com/redis/go-redis/v9 v9.0.2 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/urfave/cli/v2 v2.24.4 // indirect + github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect + golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9 // indirect + gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect +)