From aba9b883be33fe30f3ace51ce8c36aee18889099 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 22 Jan 2025 11:49:19 -0300 Subject: Setup Makefile build skeleton --- tests/main.go | 7 +++++++ tests/stm.go | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 tests/main.go create mode 100644 tests/stm.go (limited to 'tests') diff --git a/tests/main.go b/tests/main.go new file mode 100644 index 0000000..1ff3662 --- /dev/null +++ b/tests/main.go @@ -0,0 +1,7 @@ +package main + +import "stm" + +func main() { + stm.MainTest() +} diff --git a/tests/stm.go b/tests/stm.go new file mode 100644 index 0000000..a30ac1a --- /dev/null +++ b/tests/stm.go @@ -0,0 +1,9 @@ +package stm + +import ( +) + + + +func MainTest() { +} -- cgit v1.2.3