2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-16 15:52:02 +00:00
Hilbish/golibs/bait/bait.go
2021-03-26 01:12:55 -04:00

23 lines
304 B
Go

package bait
import (
"github.com/chuckpreslar/emission"
"github.com/yuin/gopher-lua"
)
type Bait struct{}
func New() Bait {
return Bait{}
}
func (b *Bait) Loader(L *lua.LState) int {
var exports = map[string]lua.LGFunction{}
mod := L.SetFuncs(L.NewTable(), exports)
L.Push(mod)
return 1
}