2024-03-06 12:56:44 -03:00
|
|
|
package obilua
|
|
|
|
|
|
|
|
|
|
import lua "github.com/yuin/gopher-lua"
|
|
|
|
|
|
|
|
|
|
func RegisterObilib(luaState *lua.LState) {
|
|
|
|
|
RegisterObiSeq(luaState)
|
2025-02-02 16:52:52 +01:00
|
|
|
RegisterObiTaxonomy(luaState)
|
2026-04-07 08:36:50 +02:00
|
|
|
RegisterHTTP(luaState)
|
2026-04-13 17:56:42 +02:00
|
|
|
RegisterJSON(luaState)
|
2024-03-06 12:56:44 -03:00
|
|
|
}
|