context and querier done

This commit is contained in:
Kasper Juul Hermansen 2023-02-11 14:03:06 +01:00
parent 3b5b59ba1c
commit 52a0db3e31
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
2 changed files with 3 additions and 4 deletions

View File

@ -15,11 +15,11 @@ Work in progress. This is not ready for usage yet
- [x] Enums
- [x] Input
- [x] Objects
- [ ] Implement context and querier
- [x] Implement context and querier
- [x] Marshaller
- [x] Querier
- [x] Context
- [ ] Deserializer for nested response (bind)
- [x] Deserializer for nested response (bind)
- [ ] Add codegen to hook into querier
- [ ] fix build / release cycle
- [ ] general api stabilisation

View File

@ -1,4 +1,3 @@
use std::{
fs::canonicalize,
io::{BufRead, BufReader},
@ -101,7 +100,7 @@ impl InnerCliSession {
let stderr_bufr = BufReader::new(stderr);
for line in stderr_bufr.lines() {
let out = line.unwrap();
panic!("could not start dagger session: {}", out)
//panic!("could not start dagger session: {}", out)
}
});