shad-go/distbuild/pkg/artifact/client.go
2022-02-10 22:06:57 +00:00

15 lines
304 B
Go

//go:build !solution
// +build !solution
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 {
panic("implement me")
}