shad-go/distbuild/pkg/filecache/client.go

27 lines
460 B
Go
Raw Normal View History

2020-04-05 13:24:48 +00:00
// +build !solution
2020-04-04 18:45:29 +00:00
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 {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 18:45:29 +00:00
}
func (c *Client) Upload(ctx context.Context, id build.ID, localPath string) error {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 18:45:29 +00:00
}
func (c *Client) Download(ctx context.Context, localCache *Cache, id build.ID) error {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 18:45:29 +00:00
}