mirror of
https://github.com/go-task/task.git
synced 2025-05-21 22:43:13 +02:00
17 lines
296 B
Go
17 lines
296 B
Go
package ast
|
|
|
|
import (
|
|
"github.com/Masterminds/semver/v3"
|
|
"time"
|
|
)
|
|
|
|
type TaskRC struct {
|
|
Version *semver.Version `yaml:"version"`
|
|
Experiments map[string]int `yaml:"experiments"`
|
|
Remote remote `yaml:"remote"`
|
|
}
|
|
|
|
type remote struct {
|
|
Expiry *time.Duration `yaml:"expiry"`
|
|
}
|