We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit c3c467fCopy full SHA for c3c467f
README.md
@@ -0,0 +1,3 @@
1
+# Renku Dev Utils
2
+
3
+Miscellanous utilities for the @renku team.
cmd/renku-dev-utils/main.go
@@ -0,0 +1,12 @@
+package main
+import (
4
+ "fmt"
5
+ "os"
6
+)
7
8
+func main() {
9
+ fmt.Println("Hello, World!")
10
11
+ os.Exit(0)
12
+}
go.mod
+module github.com/SwissDataScienceCenter/renku-dev-utils
+go 1.24.2
0 commit comments