diff --git a/README.md b/README.md index 735ec12..08d9a95 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ export FS object to blockchain #### example ``` -php cli/put.php processor filename [delay] +php src/put.php processor filename [delay] ``` #### arguments @@ -37,7 +37,7 @@ similar to the [put](#put) logic but using namespace provided as the additional #### example ``` -php cli/fix.php processor namespace filename [delay] +php src/fix.php processor namespace filename [delay] ``` #### arguments @@ -60,7 +60,7 @@ import stored object from blockchain to FS location #### example ``` -php cli/get.php processor namespace [filename] +php src/get.php processor namespace [filename] ``` #### arguments diff --git a/cli/fix.php b/src/fix.php similarity index 100% rename from cli/fix.php rename to src/fix.php diff --git a/cli/get.php b/src/get.php similarity index 100% rename from cli/get.php rename to src/get.php diff --git a/cli/put.php b/src/put.php similarity index 100% rename from cli/put.php rename to src/put.php