2020-04-05 13:24:48 +00:00
|
|
|
// +build !solution
|
|
|
|
|
2020-04-04 17:16:36 +00:00
|
|
|
package artifact
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"gitlab.com/slon/shad-go/distbuild/pkg/build"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Download artifact from remote cache into local cache.
|
|
|
|
func Download(ctx context.Context, endpoint string, c *Cache, artifactID build.ID) error {
|
2020-04-05 13:24:48 +00:00
|
|
|
panic("implement me")
|
2020-04-04 17:16:36 +00:00
|
|
|
}
|