aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-11 08:43:42 -0300
committerEuAndreh <eu@euandre.org>2024-08-11 08:43:42 -0300
commitfe06a1e1521b45ee73bca52153596d907bb11bf8 (patch)
treeb99c1bb7e50f7b016f0531721bc248f77d4b98e3 /tests
parentadd support for libsqlite3 on z/OS (diff)
downloadgolite-fe06a1e1521b45ee73bca52153596d907bb11bf8.tar.gz
golite-fe06a1e1521b45ee73bca52153596d907bb11bf8.tar.xz
Add Makefile and build skeleton
Diffstat (limited to '')
-rw-r--r--tests/golite.go8
-rw-r--r--tests/main.go7
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/golite.go b/tests/golite.go
new file mode 100644
index 0000000..1988f6e
--- /dev/null
+++ b/tests/golite.go
@@ -0,0 +1,8 @@
+package golite
+
+import (
+)
+
+
+func MainTest() {
+}
diff --git a/tests/main.go b/tests/main.go
new file mode 100644
index 0000000..f8a5b6f
--- /dev/null
+++ b/tests/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "golite"
+
+func main() {
+ golite.MainTest()
+}