You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
522 B

11 months ago
  1. const { liveSyncEndpoints } = require("./liveSync");
  2. const { importedAgentPluginEndpoints } = require("./imported-agent-plugins");
  3. // All endpoints here are not stable and can move around - have breaking changes
  4. // or are opt-in features that are not fully released.
  5. // When a feature is promoted it should be removed from here and added to the appropriate scope.
  6. function experimentalEndpoints(router) {
  7. liveSyncEndpoints(router);
  8. importedAgentPluginEndpoints(router);
  9. }
  10. module.exports = { experimentalEndpoints };