| 660 | } |
| 661 | |
| 662 | type ClaimConstraint struct { |
| 663 | SignedBy string `json:"signedBy"` // identity |
| 664 | SignedAfter time.Time `json:"signedAfter"` |
| 665 | SignedBefore time.Time `json:"signedBefore"` |
| 666 | } |
| 667 | |
| 668 | func (c *ClaimConstraint) checkValid() error { |
| 669 | return errors.New("TODO: implement blobMatches and checkValid on ClaimConstraint") |
nothing calls this directly
no outgoing calls
no test coverage detected