1
0
mirror of https://github.com/go-task/task.git synced 2025-05-21 22:43:13 +02:00
2025-04-22 08:48:34 +02:00

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