fix: import gopher-lua in other rl impls

windows-fixes
TorchedSammy 2022-01-31 17:45:21 -04:00
parent 2bc75c8130
commit 5d3c129e80
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,10 @@ package main
// making them interchangable during build time
// this is hilbiline's, as is obvious by the filename
import "github.com/Rosettea/Hilbiline"
import (
"github.com/Rosettea/Hilbiline"
"github.com/yuin/gopher-lua"
)
type lineReader struct {
hl *hilbiline.HilbilineState

View File

@ -12,6 +12,7 @@ import (
"fmt"
"github.com/maxlandon/readline"
"github.com/yuin/gopher-lua"
)
type lineReader struct {