Skip to content

Commit

Permalink
Add service ids export (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem authored Sep 7, 2022
1 parent fe7555e commit d7d2d9d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/lib/deployedApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@ const generateRegisterAppTSorJS = async ({
`${isJS ? "" : 'import { FluencePeer } from "@fluencelabs/fluence";'}
import { registerApp as registerAppService } from "./deployed.app";
const service = {
${SERVICES_FUNCTION_NAME}: () => (${JSON.stringify(
export const ${SERVICES_FUNCTION_NAME} = ${JSON.stringify(
deployedServices,
null,
2
)}),
)}
const service = {
${SERVICES_FUNCTION_NAME}: () => ${SERVICES_FUNCTION_NAME},
};
${
Expand Down

0 comments on commit d7d2d9d

Please sign in to comment.