linstrom/plugins/api.go
mstar 94106bb82f
Some checks failed
/ docker (push) Has been cancelled
Start work on lua based plugin system
2025-06-02 17:40:53 +02:00

12 lines
333 B
Go

package plugins
import lua "github.com/yuin/gopher-lua"
// TODO: Decide on the API made available to plugins
// Everything has to be a function, assume no internal state
// since the used lua state may vary between calls
type linstromApi struct{}
func insertLinstromApiIntoState(l *lua.LState) error {
panic("not implemented")
}