Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/scrutiny/src/commit/315020134802719e44c519e0297cdec57e60aa83/collector/pkg/common/shell/interface.go You should set ROOT_URL correctly, otherwise the web may not work correctly.
scrutiny/collector/pkg/common/shell/interface.go

12 lines
344 B

package shell
import (
"github.com/sirupsen/logrus"
)
// Create mock using:
// mockgen -source=collector/pkg/common/shell/interface.go -destination=collector/pkg/common/shell/mock/mock_shell.go
type Interface interface {
Command(logger *logrus.Entry, cmdName string, cmdArgs []string, workingDir string, environ []string) (string, error)
}