diff --git a/rl.go b/rl.go index ca7a9dc..b7f1081 100644 --- a/rl.go +++ b/rl.go @@ -1,9 +1,10 @@ // +build !hilbiline +package main + // Here we define a generic interface for readline and hilbiline, // making them interchangable during build time // this is normal readline -package main import "github.com/bobappleyard/readline" diff --git a/rl_hilbiline.go b/rl_hilbiline.go index 1be732c..b68cedc 100644 --- a/rl_hilbiline.go +++ b/rl_hilbiline.go @@ -1,9 +1,10 @@ // +build hilbiline +package main + // Here we define a generic interface for readline and hilbiline, // making them interchangable during build time // this is hilbiline's, as is obvious by the filename -package main import "github.com/Rosettea/Hilbiline"