ReadSchema returns the schema definition for a specific tenant and version as a structured object.
(ctx context.Context, tenantID, version string)
| 28 | |
| 29 | // ReadSchema returns the schema definition for a specific tenant and version as a structured object. |
| 30 | func (r *SchemaReader) ReadSchema(ctx context.Context, tenantID, version string) (schema *base.SchemaDefinition, err error) { |
| 31 | return r.delegate.ReadSchema(ctx, tenantID, version) |
| 32 | } |
| 33 | |
| 34 | // ReadSchemaString returns the schema definition for a specific tenant and version as a string. |
| 35 | func (r *SchemaReader) ReadSchemaString(ctx context.Context, tenantID, version string) (definitions []string, err error) { |
nothing calls this directly
no test coverage detected