RootObject is an expanded interface on Dolt's root objects.
| 28 | |
| 29 | // RootObject is an expanded interface on Dolt's root objects. |
| 30 | type RootObject interface { |
| 31 | doltdb.RootObject |
| 32 | // GetID returns the root object ID. |
| 33 | GetID() id.Id |
| 34 | // GetRootObjectID returns the root object ID. |
| 35 | GetRootObjectID() RootObjectID |
| 36 | // Serialize returns the byte representation of the root object. |
| 37 | Serialize(ctx context.Context) ([]byte, error) |
| 38 | } |
| 39 | |
| 40 | // Conflict is an expanded interface on Dolt's conflict root object. |
| 41 | type Conflict interface { |
no outgoing calls
no test coverage detected