1
0
mirror of https://github.com/go-task/task.git synced 2025-05-13 22:16:31 +02:00
task/taskrc/ast/taskrc.go
Valentin Maerten c8a3ecc7fa
rename const
2025-04-23 10:44:21 +02:00

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"`
}