14 lines
375 B
Go
14 lines
375 B
Go
package qpstore
|
|
|
|
import (
|
|
"mrvacommander/pkg/common"
|
|
"mrvacommander/pkg/qldbstore"
|
|
)
|
|
|
|
type Storage interface {
|
|
NextID() int
|
|
SaveQueryPack(tgz []byte, sessionID int) (storagePath string, error error)
|
|
FindAvailableDBs(analysisReposRequested []common.NameWithOwner) (not_found_repos []common.NameWithOwner,
|
|
analysisRepos *map[common.NameWithOwner]qldbstore.DBLocation)
|
|
}
|