add all modules, better gradle setup, and elixir for server

This commit is contained in:
mae
2025-10-07 19:34:23 -05:00
parent 3efcca8651
commit e58cc0a1a6
40 changed files with 273 additions and 29 deletions

3
plt-pkg/build.gradle.kts Normal file
View File

@@ -0,0 +1,3 @@
plugins {
id("goPlugin")
}

3
plt-pkg/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module plt-pkg
go 1.24

5
plt-pkg/main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
}

9
plt-pkg/main_test.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"testing"
)
func TestHelloWorld(t *testing.T) {
}