inital release refactor

This commit is contained in:
Alex Lovell-Troy 2023-09-14 15:10:08 -04:00
parent 34367f830a
commit 3351de48a6
12 changed files with 215 additions and 84 deletions

View file

@ -3,7 +3,7 @@ package sqlite
import (
"fmt"
magellan "davidallendj/magellan/internal"
magellan "github.com/bikeshack/magellan/internal"
"github.com/jmoiron/sqlx"
)
@ -58,4 +58,4 @@ func GetProbeResults(path string) ([]magellan.BMCProbeResult, error) {
return nil, fmt.Errorf("could not retrieve probes: %v", err)
}
return results, nil
}
}