Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 335 Bytes

File metadata and controls

21 lines (16 loc) · 335 Bytes

Rust

The recommended folder structure for Rust functions is:

- src
  - handler.rs
- serverless.yml

Your serverless.yml functions should look something like this:

provider:
  runtime: rust179
functions:
  main:
    handler: "handler"

You can find more Rust examples in the examples folder.