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

27 lines
481 B
Go

//go:build !solution
// +build !solution
package filecache
import (
"context"
"go.uber.org/zap"
"gitlab.com/slon/shad-go/distbuild/pkg/build"
)
type Client struct {
}
func NewClient(l *zap.Logger, endpoint string) *Client {
panic("implement me")
}
func (c *Client) Upload(ctx context.Context, id build.ID, localPath string) error {
panic("implement me")
}
func (c *Client) Download(ctx context.Context, localCache *Cache, id build.ID) error {
panic("implement me")
}