mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-20 02:17:44 +08:00
12 lines
163 B
Go
12 lines
163 B
Go
package progress
|
|
|
|
import (
|
|
"github.com/moby/buildkit/client"
|
|
)
|
|
|
|
type Writer interface {
|
|
Done() <-chan struct{}
|
|
Err() error
|
|
Status() chan *client.SolveStatus
|
|
}
|