aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-01-22 11:49:19 -0300
committerEuAndreh <eu@euandre.org>2025-01-22 11:49:19 -0300
commitaba9b883be33fe30f3ace51ce8c36aee18889099 (patch)
treeefb6902ea9f88d46130789e2ec9acbb234b88cd0 /tests
parentRemove unused files (diff)
downloadstm-aba9b883be33fe30f3ace51ce8c36aee18889099.tar.gz
stm-aba9b883be33fe30f3ace51ce8c36aee18889099.tar.xz
Setup Makefile build skeleton
Diffstat (limited to 'tests')
-rw-r--r--tests/main.go7
-rw-r--r--tests/stm.go9
2 files changed, 16 insertions, 0 deletions
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() {
+}