mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 19:07:13 +00:00
11 lines
263 B
Go
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"`
|
|
}
|