@vyr/service 0.0.33 → 0.0.35

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Service.ts +1 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vyr/service",
3
- "version": "0.0.33",
3
+ "version": "0.0.35",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
package/src/Service.ts CHANGED
@@ -34,9 +34,7 @@ abstract class Service {
34
34
  /**
35
35
  * 扩展服务的启动阶段
36
36
  *
37
- * 扩展服务应在该阶段开始前完成所有的准备工作
38
- *
39
- * 扩展服务应在该阶段对外提供自己的服务
37
+ * 扩展服务应在该阶段完成所有的准备工作
40
38
  */
41
39
  async start() { }
42
40
  }