Other(refactor): Implement locations in Bridge

This commit is contained in:
James Houlahan
2022-08-19 11:12:34 +02:00
committed by Jakub
parent e4f08f79c3
commit ee5a126c1c
3 changed files with 16 additions and 4 deletions

View File

@ -24,9 +24,13 @@ import (
)
type Locator interface {
ProvideLogsPath() (string, error)
GetLicenseFilePath() string
GetDependencyLicensesLink() string
Clear() error
ClearUpdates() error
ProvideLogsPath() (string, error)
}
type CacheProvider interface {