github.com/Benchkram/bob@v0.0.0-20220321080157-7c8f3876e225/bobtask/hash/hash.go (about) 1 package hash 2 3 // In represents a hash tracking changes of 4 // inputs, the environment and the task description itself. 5 // Every change in one of those must trigger a task rebuild. 6 type In string 7 8 func (i *In) String() string { 9 return string(*i) 10 }