Skip to content

Commit

Permalink
Module loader implementations do not need to be public (#6336)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Jul 7, 2024
1 parent 423a06e commit bcf678e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/apps/js_generic/js_generic_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
#include "ccf/js/extensions/ccf/request.h"
#include "ccf/js/extensions/ccf/rpc.h"
#include "ccf/js/interpreter_cache_interface.h"
#include "ccf/js/modules/chained_module_loader.h"
#include "ccf/js/modules/kv_bytecode_module_loader.h"
#include "ccf/js/modules/kv_module_loader.h"
#include "ccf/node/host_processes_interface.h"
#include "ccf/service/tables/jsengine.h"
#include "ccf/version.h"
#include "enclave/enclave_time.h"
#include "js/global_class_ids.h"
#include "js/modules/chained_module_loader.h"
#include "js/modules/kv_bytecode_module_loader.h"
#include "js/modules/kv_module_loader.h"
#include "node/rpc_context_impl.h"
#include "service/tables/endpoints.h"

Expand Down
2 changes: 1 addition & 1 deletion src/js/extensions/ccf/gov_effects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include "ccf/js/extensions/ccf/gov_effects.h"

#include "ccf/js/core/context.h"
#include "ccf/js/modules/kv_module_loader.h"
#include "ccf/version.h"
#include "js/modules/kv_module_loader.h"
#include "node/rpc/jwt_management.h"

#include <quickjs/quickjs.h>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/js/registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
#include "ccf/js/extensions/ccf/request.h"
#include "ccf/js/extensions/ccf/rpc.h"
#include "ccf/js/interpreter_cache_interface.h"
#include "ccf/js/modules/chained_module_loader.h"
#include "ccf/js/modules/kv_bytecode_module_loader.h"
#include "ccf/js/modules/kv_module_loader.h"
#include "js/modules/chained_module_loader.h"
#include "js/modules/kv_bytecode_module_loader.h"
#include "js/modules/kv_module_loader.h"
#include "node/rpc_context_impl.h"

namespace ccf::js
Expand Down

0 comments on commit bcf678e

Please sign in to comment.