diff options
| author | EuAndreh <eu@euandre.org> | 2024-08-11 08:43:42 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-08-11 08:43:42 -0300 |
| commit | fe06a1e1521b45ee73bca52153596d907bb11bf8 (patch) | |
| tree | b99c1bb7e50f7b016f0531721bc248f77d4b98e3 /tests | |
| parent | add support for libsqlite3 on z/OS (diff) | |
| download | golite-fe06a1e1521b45ee73bca52153596d907bb11bf8.tar.gz golite-fe06a1e1521b45ee73bca52153596d907bb11bf8.tar.xz | |
Add Makefile and build skeleton
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/golite.go | 8 | ||||
| -rw-r--r-- | tests/main.go | 7 |
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() +} |
