Files
proton-bridge/internal/bridge/bridge_locations.go
2022-09-01 13:24:42 +02:00

14 lines
335 B
Go

package bridge
func (bridge *Bridge) ProvideLogsPath() (string, error) {
return bridge.locations.ProvideLogsPath()
}
func (bridge *Bridge) GetLicenseFilePath() string {
return bridge.locations.GetLicenseFilePath()
}
func (bridge *Bridge) GetDependencyLicensesLink() string {
return bridge.locations.GetDependencyLicensesLink()
}