constraints.go raw

   1  package constraints
   2  
   3  type Bytes interface {
   4  	~string | ~[]byte
   5  }
   6