mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
19 lines
245 B
YAML
19 lines
245 B
YAML
service: custom
|
|
|
|
frameworkVersion: '*'
|
|
|
|
provider:
|
|
name: customProvider
|
|
runtime: foo
|
|
|
|
plugins:
|
|
- ./custom-provider
|
|
|
|
functions:
|
|
someFunction:
|
|
events:
|
|
- someEvent:
|
|
someProp: some string
|
|
otherFunction:
|
|
runtime: bar
|