mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 01:01:08 +00:00
11 lines
214 B
Go
11 lines
214 B
Go
package control
|
|
|
|
import controlapi "github.com/moby/buildkit/api/services/control"
|
|
|
|
var emptyLogVertexSize int
|
|
|
|
func init() {
|
|
emptyLogVertex := controlapi.VertexLog{}
|
|
emptyLogVertexSize = emptyLogVertex.Size()
|
|
}
|