@adonix.org/cloud-spark 0.0.161 → 0.0.162

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,7 +21,7 @@ npm install @adonix.org/cloud-spark
21
21
 
22
22
  <br>
23
23
 
24
- ## :stopwatch: Quickstart
24
+ ## :rocket: Quickstart
25
25
 
26
26
  :page_facing_up: hello-world.ts
27
27
 
@@ -29,7 +29,7 @@ npm install @adonix.org/cloud-spark
29
29
  import { BasicWorker, TextResponse } from "@adonix.org/cloud-spark";
30
30
 
31
31
  export class HelloWorld extends BasicWorker {
32
- async get(): Promise<Response> {
32
+ get() {
33
33
  return this.response(TextResponse, "Hi from Cloud Spark!");
34
34
  }
35
35
  }