Changed import paths

This commit is contained in:
2023-05-03 19:40:30 -04:00
parent 794ab1b5e8
commit 33c787d70b
70 changed files with 207 additions and 207 deletions

View File

@@ -2,7 +2,7 @@ package nasin
import "image"
import "errors"
import "git.tebibyte.media/sashakoshka/tomo"
import "tomo"
// Application represents a Tomo/Nasin application.
type Application interface {

View File

@@ -6,7 +6,7 @@ import "os"
// the generic extract function we have here for extra type safety goodness.
import "plugin"
import "path/filepath"
import "git.tebibyte.media/sashakoshka/tomo"
import "tomo"
type backendFactory func () (tomo.Backend, error)
var factories []backendFactory