12 lines
333 B
Go
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")
|
|
}
|