Merge pull request 'Initialize Go module (go.mod)' (#8) from feature/init-go-module into main

This commit is contained in:
fjadmin 2026-05-21 15:00:46 +00:00
commit e72ef6ae87
3 changed files with 13 additions and 0 deletions

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module github.com/marmaduke/testbed2
go 1.24

3
main.go Normal file
View file

@ -0,0 +1,3 @@
package main
func main() {}

7
main_test.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "testing"
func TestModule(t *testing.T) {
// Basic test to verify module initialization
}