From fe06a1e1521b45ee73bca52153596d907bb11bf8 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 11 Aug 2024 08:43:42 -0300 Subject: Add Makefile and build skeleton --- tests/golite.go | 8 ++++++++ tests/main.go | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 tests/golite.go create mode 100644 tests/main.go (limited to 'tests') 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() +} -- cgit v1.2.3