Files
fn-serverless/api/const.go
Nisha Lad 58118c1e8d added change for 'fn_id' to propagate through to logs (#1351)
* edited logging variable format to fit same standard across all fn related projects
* changing naming convention of param urls to contain lowercase_underscores and removing camelCase to lowercase_underscored normalizing func & refactoring duplicated variables
2018-12-14 18:45:35 +00:00

22 lines
684 B
Go

package api
const (
// AppName is the app name context key & url path parameter
AppName string = "app_name"
// AppID is the app id context key & url path parameter
AppID string = "app_id"
// FnID is the fn id context key & url path parameter
// TriggerID is the url path parameter for trigger id
TriggerID string = "trigger_id"
// CallID is the url path parameter for call id
CallID string = "call_id"
// FnID is the url path parameter for fn id
FnID string = "fn_id"
// TriggerSource is the triggers source parameter
TriggerSource string = "trigger_source"
//TriggerType is the trigger type parameter - only used in hybrid API
TriggerType string = "trigger_type"
)