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

26 lines
470 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-04-05 13:24:48 +00:00
2020-04-04 18:45:29 +00:00
package filecache
import (
"context"
"go.uber.org/zap"
2023-10-03 17:25:41 +00:00
"gitlab.com/manytask/itmo-go/public/distbuild/pkg/build"
2020-04-04 18:45:29 +00:00
)
2023-10-02 19:32:41 +00:00
type Client struct{}
2020-04-04 18:45:29 +00:00
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
}