mirror of
https://github.com/go-task/task.git
synced 2025-05-13 22:16:31 +02:00
17 lines
307 B
Go
17 lines
307 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 {
|
|
CacheExpiry *time.Duration `yaml:"cache-expiry"`
|
|
}
|