8 lines
303 B
TypeScript
8 lines
303 B
TypeScript
//Make endpoints available for import by other modules
|
|
|
|
import findReleasePath from './ssn/findReleasePath';
|
|
import getManifest from './ssn/getManifest';
|
|
import getPatch from './ssn/getPatch';
|
|
import getSolidpkg from './ssn/getSolidpkg';
|
|
|
|
export { findReleasePath, getManifest, getSolidpkg, getPatch };
|