UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

16 lines 344 B
/** * This is a dummy factory that shows how to suport the secret capability * @returns */ export const SecretCapability = { name: 'secret', register: () => { const ctx = { getSecret: async () => { return ''; } }; return ctx; } }; //# sourceMappingURL=secret.js.map