UNPKG

create-sparc

Version:

NPX package to scaffold new projects with SPARC methodology structure

15 lines (13 loc) 349 B
/** * Registry Client Module * * This module exports the Registry Client and related utilities. */ const RegistryClient = require('./registry-client'); const MockRegistryClient = require('./mock-registry-client'); const RegistryError = require('./registry-error'); module.exports = { RegistryClient, MockRegistryClient, RegistryError };