github.com/grahambrereton-form3/tilt@v0.10.18/internal/engine/runtimelog/actions.go (about) 1 package runtimelog 2 3 import ( 4 "github.com/windmilleng/tilt/internal/k8s" 5 "github.com/windmilleng/tilt/internal/store" 6 ) 7 8 type PodLogAction struct { 9 store.LogEvent 10 PodID k8s.PodID 11 } 12 13 func (PodLogAction) Action() {} 14 15 type DockerComposeLogAction struct { 16 store.LogEvent 17 } 18 19 func (DockerComposeLogAction) Action() {}