convox/pkg/structs/log.go
David Dollar 473a4937f3
init
2019-08-16 15:49:19 -04:00

11 lines
263 B
Go

package structs
import "time"
type LogsOptions struct {
Filter *string `flag:"filter" header:"Filter"`
Follow *bool `header:"Follow"`
Prefix *bool `header:"Prefix"`
Since *time.Duration `default:"2m" flag:"since" header:"Since"`
}