You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
New Features
Command supports all http methods: get, post, put, delete, options, head
Bugfixes and Improvement
Cleanup logs
Example
@ service1 put /api/http/put
@ service2 delete /api/http/delete
+ put me
*true @> service1
- Result $message
+ delete me
*true @> service2
- Result $message2
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
New Features
Add new directive /plugin
Support directive /plugin code is written in botscript document, so user has ability to create plugin from BotScript.AI platform without code
Support directive /plugin run in node and browser
Bugfixes and Improvement
Refactor struct directive paring
Update readme
Example
/plugin: test```jsreq.variables.today = new Date().getDate();req.variables.day = new Date().getDay();# add current year ??req.variables.year = new Date().getFullYear();```>test
+ howdy
- Today is $today