From ed0b7b9b4f5c20f492afcc8f582284f149ed6c57 Mon Sep 17 00:00:00 2001 From: Sam Gammon Date: Sun, 13 Aug 2023 22:24:58 -0700 Subject: [PATCH] chore: add inert gosum/gomod Enables a way to list ourselves on Graal's page via the dependency graph. Signed-off-by: Sam Gammon --- go.mod | 7 +++++++ go.sum | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..2244dd53 --- /dev/null +++ b/go.mod @@ -0,0 +1,7 @@ +module github.com/sgammon/rules_graalvm + +go 1.20 + +require ( + github.com/oracle/graal v0.0.0-20230404173117-d009080559d8 // indirect +) \ No newline at end of file diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..15be4f45 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/oracle/graal v0.0.0-20230404173117-d009080559d8 h1:tMJyA85Y++BJhS6UnByMf8DoqDEDJYaRtcIi84Zu8sE= +github.com/oracle/graal v0.0.0-20230404173117-d009080559d8/go.mod h1:1dYHRgwmI8y3khulqCfD/VVrZ2F+qyra5Mh+jfBwork=