github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/internal/controllers/core/liveupdate/input.go (about)

     1  package liveupdate
     2  
     3  import (
     4  	"github.com/tilt-dev/tilt/internal/build"
     5  	"github.com/tilt-dev/tilt/internal/store/liveupdates"
     6  
     7  	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
     8  )
     9  
    10  type Input struct {
    11  	// Derived from DockerResource
    12  	IsDC bool
    13  
    14  	// Derived from KubernetesResource + KubernetesSelector + DockerResource
    15  	Containers []liveupdates.Container
    16  
    17  	// Derived from FileWatch + Sync rules
    18  	ChangedFiles []build.PathMapping
    19  
    20  	LastFileTimeSynced metav1.MicroTime
    21  }