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] Enums
- [x] Input - [x] Input
- [x] Objects - [x] Objects
- [ ] Implement context and querier - [x] Implement context and querier
- [x] Marshaller - [x] Marshaller
- [x] Querier - [x] Querier
- [x] Context - [x] Context
- [ ] Deserializer for nested response (bind) - [x] Deserializer for nested response (bind)
- [ ] Add codegen to hook into querier - [ ] Add codegen to hook into querier
- [ ] fix build / release cycle - [ ] fix build / release cycle
- [ ] general api stabilisation - [ ] general api stabilisation

View File

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