diff options
author | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-28 14:54:17 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-28 14:54:17 +0200 |
commit | 3db8e0e451ea37e785c42edc81075fc645315a66 (patch) | |
tree | f7e4449fa09e99497d99ff86737ceb0977d43ef5 /hola | |
parent | cf6b80110038ab71bbb591aaa7fded0852b54f2c (diff) |
add test module
Diffstat (limited to 'hola')
-rw-r--r-- | hola/go.mod | 3 | ||||
-rw-r--r-- | hola/main.go | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/hola/go.mod b/hola/go.mod new file mode 100644 index 0000000..55424a9 --- /dev/null +++ b/hola/go.mod @@ -0,0 +1,3 @@ +module git.sigsum.org/testing/hola + +go 1.17 diff --git a/hola/main.go b/hola/main.go new file mode 100644 index 0000000..3e868ca --- /dev/null +++ b/hola/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "log" +) + +func main() { + log.Printf("hola") +} |