feat: with tx on all

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-10-03 23:08:12 +02:00
parent e774529b04
commit bc28451f8d
18 changed files with 256 additions and 28 deletions

View File

@@ -151,6 +151,7 @@ output-path = "src/crunch"
[[publish]]
schema-path = "some-schema"
output-path = "some-output"
entities = []
"#;
let mut config = File::parse(raw).await?;
let config = config.add_publish("some-schema", "some-output", &[]);
@@ -176,6 +177,7 @@ codegen = ["rust"]
[[publish]]
schema-path = "some-schema"
output-path = "some-output"
entities = []
"#;
let mut config = File::parse(raw).await?;
let config = config.add_publish("some-schema", "some-output", &[]);
@@ -221,6 +223,7 @@ codegen = ["rust"]
[[publish]]
schema-path = "some-schema"
output-path = "some-output"
entities = []
"#;
let config = File::parse(raw).await?.get_config()?;