github.com/grahambrereton-form3/tilt@v0.10.18/internal/engine/configs/actions.go (about)

     1  package configs
     2  
     3  import (
     4  	"time"
     5  
     6  	"github.com/windmilleng/wmclient/pkg/analytics"
     7  
     8  	"github.com/windmilleng/tilt/internal/store"
     9  	"github.com/windmilleng/tilt/pkg/model"
    10  )
    11  
    12  type ConfigsReloadStartedAction struct {
    13  	FilesChanged map[string]bool
    14  	StartTime    time.Time
    15  }
    16  
    17  func (ConfigsReloadStartedAction) Action() {}
    18  
    19  type ConfigsReloadedAction struct {
    20  	Manifests          []model.Manifest
    21  	TiltIgnoreContents string
    22  	ConfigFiles        []string
    23  
    24  	FinishTime           time.Time
    25  	Err                  error
    26  	Warnings             []string
    27  	Features             map[string]bool
    28  	TeamName             string
    29  	Secrets              model.SecretSet
    30  	DockerPruneSettings  model.DockerPruneSettings
    31  	AnalyticsTiltfileOpt analytics.Opt
    32  
    33  	// The length of the global log when Tiltfile execution started.
    34  	// Useful for knowing how far back in time we have to scrub secrets.
    35  	GlobalLogLineCountAtExecStart int
    36  }
    37  
    38  func (ConfigsReloadedAction) Action() {}
    39  
    40  type TiltfileLogAction struct {
    41  	store.LogEvent
    42  }
    43  
    44  func (TiltfileLogAction) Action() {}