Created
September 20, 2022 12:09
-
-
Save jayhuang75/19019d6e5c953ebb85a2bcb26c40a234 to your computer and use it in GitHub Desktop.
rust_serverless_trading_view_bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[tokio::main] | |
async fn main() -> Result<(), Error> { | |
dotenv().ok(); | |
// The runtime logging can be enabled here by initializing `tracing` with `tracing-subscriber` | |
// While `tracing` is used internally, `log` can be used as well if preferred. | |
tracing_subscriber::fmt() | |
.with_max_level(tracing::Level::INFO) | |
// disabling time is handy because CloudWatch will add the ingestion time. | |
.without_time() | |
.init(); | |
let func = service_fn(func); | |
lambda_runtime::run(func).await?; | |
Ok(()) | |
} | |
async fn func(_event: LambdaEvent<Value>) -> Result<Value, Error> { | |
// let (event, _context) = event.into_parts(); | |
// let first_name = event["firstName"].as_str().unwrap_or("world"); | |
// trigger the process | |
let mut new_proccessor = Proccessor::new().await.unwrap(); | |
let count = new_proccessor.run().await.expect("process error"); | |
Ok(json!({ "message": format!("process , {}!", count) })) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment