getSchemaPath returns the path to the file containing schema info
(ctx context.DnoteCtx)
| 220 | |
| 221 | // getSchemaPath returns the path to the file containing schema info |
| 222 | func getSchemaPath(ctx context.DnoteCtx) string { |
| 223 | return fmt.Sprintf("%s/%s", ctx.Paths.LegacyDnote, schemaFilename) |
| 224 | } |
| 225 | |
| 226 | func readSchema(ctx context.DnoteCtx) (schema, error) { |
| 227 | var ret schema |
no outgoing calls
no test coverage detected