| 25 | ) |
| 26 | |
| 27 | type op1 struct { |
| 28 | OpBase |
| 29 | Field1 string `json:"field_1"` |
| 30 | Files []repository.Hash `json:"files"` |
| 31 | } |
| 32 | |
| 33 | func newOp1(author identity.Interface, field1 string, files ...repository.Hash) *op1 { |
| 34 | return &op1{OpBase: NewOpBase(Op1, author, 0), Field1: field1, Files: files} |
nothing calls this directly
no outgoing calls
no test coverage detected