mirror of https://github.com/databricks/cli.git
25 lines
445 B
Go
25 lines
445 B
Go
package libraries
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/databricks/databricks-sdk-go/service/compute"
|
|
)
|
|
|
|
func libraryPath(library *compute.Library) (string, error) {
|
|
if library.Whl != "" {
|
|
return library.Whl, nil
|
|
}
|
|
if library.Jar != "" {
|
|
return library.Jar, nil
|
|
}
|
|
if library.Egg != "" {
|
|
return library.Egg, nil
|
|
}
|
|
if library.Requirements != "" {
|
|
return library.Requirements, nil
|
|
}
|
|
|
|
return "", fmt.Errorf("not supported library type")
|
|
}
|