package main
import (
"github.com/eaigner/hood"
_ "github.com/mattn/go-sqlite3"
"fmt"
)
func main() {
// Open a DB connection, use New() alternatively for unregistered dialects
hd, err := hood.Open("sqlite3", "test.db")
if err != nil {
panic(err)
}
fmt.Println(hd)
}