github.com/benchkram/bob@v0.0.0-20240314204020-b7a57f2f9be9/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  }