fix readme usage & changelog

This commit is contained in:
Adrien Marquès 2019-11-19 19:24:57 +01:00
parent 6bc8160f99
commit d44df7eee0
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ func main() {
server.Checkers.Add( builtin.NewFloat64() ); server.Checkers.Add( builtin.NewFloat64() );
// 3. bind your implementations // 3. bind your implementations
server.HandleFunc(http.MethodGet, func(req api.Request, res *api.Response){ server.HandleFunc(http.MethodGet, "/path", func(req api.Request, res *api.Response){
// ... process stuff ... // ... process stuff ...
res.SetError(api.ErrorSuccess()); res.SetError(api.ErrorSuccess());
}) })
@ -210,6 +210,6 @@ In this example we want 3 arguments :
- [ ] `[a:b]` - map containing **only** keys of type `a` and values of type `b` (*a or b can be ommited*) - [ ] `[a:b]` - map containing **only** keys of type `a` and values of type `b` (*a or b can be ommited*)
- [x] generic controllers implementation (shared objects) - [x] generic controllers implementation (shared objects)
- [x] response interface - [x] response interface
- [ ] log bound resources when building the aicra server - [x] log bound resources when building the aicra server
- [ ] fail on check for unimplemented resources at server boot. - [ ] fail on check for unimplemented resources at server boot.
- [ ] fail on check for unavailable types in api.json at server boot. - [ ] fail on check for unavailable types in api.json at server boot.