From c2b17924e20e6c6261258a630f553efb264b89c7 Mon Sep 17 00:00:00 2001 From: Jan Tytgat Date: Mon, 9 Jun 2025 22:18:07 +0200 Subject: [PATCH] Add go.mod for simple example Signed-off-by: Jan Tytgat --- examples/application/simple/go.mod | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 examples/application/simple/go.mod diff --git a/examples/application/simple/go.mod b/examples/application/simple/go.mod new file mode 100644 index 0000000..b18fd55 --- /dev/null +++ b/examples/application/simple/go.mod @@ -0,0 +1,19 @@ +module simple + +go 1.24.2 + +toolchain go1.24.4 + +require ( + git.flexabyte.io/flexabyte/go-kit v0.1.1-0.20250609193926-e63b41c5ff45 + github.com/spf13/cobra v1.9.1 +) + +require ( + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/samber/lo v1.50.0 // indirect + github.com/samber/slog-formatter v1.2.0 // indirect + github.com/samber/slog-multi v1.4.0 // indirect + github.com/spf13/pflag v1.0.6 // indirect + golang.org/x/text v0.26.0 // indirect +)