Capitalize type names to prepare for moving them to the top level package

This commit is contained in:
Soam Vasani
2016-09-09 14:39:31 -07:00
parent 67ce88ebcc
commit 796a9810a4
7 changed files with 31 additions and 31 deletions
+8 -8
View File
@@ -47,14 +47,14 @@ import (
)
type (
function struct {
name string
uid string
Function struct {
Name string
Uid string
}
httptrigger struct {
urlPattern string
function
HTTPTrigger struct {
UrlPattern string
Function
}
options struct {
@@ -65,9 +65,9 @@ type (
}
)
// request url ---[mux]---> function(name,uid) ----[fmap]----> k8s service url
// request url ---[mux]---> Function(name,uid) ----[fmap]----> k8s service url
// request url ---[trigger]---> function(name, deployment) ----[deployment]----> function(name, uid) ----[pool mgr]---> k8s service url
// request url ---[trigger]---> Function(name, deployment) ----[deployment]----> Function(name, uid) ----[pool mgr]---> k8s service url
func router(httpTriggerSet *HTTPTriggerSet) *mutableRouter {
muxRouter := mux.NewRouter()