graphjin 0.17.9 → 0.17.10

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/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -133,11 +133,11 @@ import (
133
133
 
134
134
  gj, err := serv.NewGraphJinService(conf, opt...)
135
135
  if err != nil {
136
- fatalInProd(err)
136
+ return err
137
137
  }
138
138
 
139
139
  if err := gj.Start(); err != nil {
140
- fatalInProd(err)
140
+ return err
141
141
  }
142
142
  ```
143
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphjin",
3
- "version": "0.17.9",
3
+ "version": "0.17.10",
4
4
  "description": "GraphJin - Build APIs in 5 minutes with GraphQL. An instant GraphQL to SQL compiler.",
5
5
  "main": "index.js",
6
6
  "directories": {