10 lines
259 B
Go
10 lines
259 B
Go
|
package commonflags
|
||
|
|
||
|
const (
|
||
|
// ExpireAt is a flag for setting last epoch of an object or a token.
|
||
|
ExpireAt = "expire-at"
|
||
|
// Lifetime is a flag for setting the lifetime of an object or a token,
|
||
|
// starting from the current epoch.
|
||
|
Lifetime = "lifetime"
|
||
|
)
|