1 2 3 4 5 6 7 8 9
mod no_run { fn custom_log_init() -> &'static str { // Here would go custom initialization code "some value" } use lambda_appsync::appsync_lambda_main; appsync_lambda_main!("../../../../schema.graphql", log_init = custom_log_init); } fn main() {}