diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-11-05 00:10:02 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2014-11-09 14:56:58 +0200 |
| commit | 1c2792eaa13c8c539bb6f0fcd3c6d9dce1bfce52 (patch) | |
| tree | 527515bcc3de4b75b347a416a5c1ea4ec510b93d /scripts/rz_api_mesh.js | |
| parent | 2833d766d2b4a04bb5f1a5b5fe35fbd0857c9393 (diff) | |
The two rhizi APIs: backend & mesh - currently all of the implementation resides in RZ_API_Backend but the intent is to slowly migrate functionality towards running in a distributed fashion. RZ_API_Mesh may be act as the basis for a protocol definition in the future.
Diffstat (limited to 'scripts/rz_api_mesh.js')
| -rw-r--r-- | scripts/rz_api_mesh.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/rz_api_mesh.js b/scripts/rz_api_mesh.js new file mode 100644 index 00000000..3fba4aef --- /dev/null +++ b/scripts/rz_api_mesh.js @@ -0,0 +1,9 @@ +/** + * API calls designed to execute in decentralized fashion + */ +define([], function() { + function RZ_API_Mesh() { + + } + return new RZ_API_Mesh(); +}); |
