mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
19 lines
244 B
YAML
19 lines
244 B
YAML
service: custom
|
|
|
|
frameworkVersion: '*'
|
|
|
|
provider:
|
|
name: customProvider
|
|
runtime: foo
|
|
|
|
plugins:
|
|
- ./customProvider
|
|
|
|
functions:
|
|
someFunction:
|
|
events:
|
|
- someEvent:
|
|
someProp: some string
|
|
otherFunction:
|
|
runtime: bar
|