Skip to content

Commit c3c467f

Browse files
committed
Initial commit
0 parents  commit c3c467f

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Renku Dev Utils
2+
3+
Miscellanous utilities for the @renku team.

cmd/renku-dev-utils/main.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"os"
6+
)
7+
8+
func main() {
9+
fmt.Println("Hello, World!")
10+
11+
os.Exit(0)
12+
}

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/SwissDataScienceCenter/renku-dev-utils
2+
3+
go 1.24.2

0 commit comments

Comments
 (0)