chore: move comments below package declaration

pull/78/head
sammyette 2021-10-16 11:31:01 -04:00
parent 1689d80721
commit 71b72bbdd4
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
2 changed files with 4 additions and 2 deletions

3
rl.go
View File

@ -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"

View File

@ -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"