shad-go/distbuild/pkg/filecache/client.go
Sergey Paramoshkin dc939b6ed1
update repo
2023-10-02 22:32:41 +03:00

25 lines
471 B
Go

//go:build !solution
package filecache
import (
"context"
"go.uber.org/zap"
"gitlab.com/manytask/itmo-go/private/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")
}