fix: dont export lua init

dev
TorchedSammy 2021-12-08 23:31:48 -04:00
parent 4dadfb0874
commit bcfbb20685
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 2 additions and 2 deletions

2
lua.go
View File

@ -19,7 +19,7 @@ import (
var minimalconf = `prompt '& '` var minimalconf = `prompt '& '`
func LuaInit() { func luaInit() {
l = lua.NewState() l = lua.NewState()
l.OpenLibs() l.OpenLibs()

View File

@ -139,7 +139,7 @@ func main() {
} }
go handleSignals() go handleSignals()
LuaInit() luaInit()
runLogin() runLogin()
runConfig(*configflag) runConfig(*configflag)