From 3ce83f86f5f711d89e758f0a0f06c4058a958012 Mon Sep 17 00:00:00 2001 From: hosted-fornet Date: Thu, 11 Jul 2024 09:25:35 -0700 Subject: [PATCH] package_apis: add explanatory remarks about client script --- src/cookbook/package_apis.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cookbook/package_apis.md b/src/cookbook/package_apis.md index 3d25bc4..0ff16ee 100644 --- a/src/cookbook/package_apis.md +++ b/src/cookbook/package_apis.md @@ -94,6 +94,10 @@ Thus, when developing on a fake node, you must first build and start any depende #### Process +The `client` process here is a [script](../cookbook/writing_scripts.md). +In general, importers of APIs are just processes, but in this case, it made more sense for this specific functionality to write it as a script. +The `Args` and `Command` `struct`s set up command-line parsing and are unrelated to the WIT API. + ```rust {{#includehidetest ../code/remote_file_storage/client/client/src/lib.rs}} ```