shad-go/distbuild/pkg/artifact/client.go
2022-03-15 23:49:56 +03:00

14 lines
284 B
Go

//go: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")
}