本文整理汇总了Golang中github.com/tsuru/tsuru/router.Register函数的典型用法代码示例。如果您正苦于以下问题:Golang Register函数的具体用法?Golang Register怎么用?Golang Register使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了Register函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: init
func init() {
router.Register(routerName, createRouter)
hc.AddChecker("Router galebv2", router.BuildHealthCheck(routerName))
}
示例2: init
func init() {
router.Register("elb", elbRouter{})
}
示例3: init
func init() {
router.Register("fake", createRouter)
router.Register("fake-hc", createHCRouter)
}
示例4: init
func init() {
router.Register(routerType, createRouter)
router.Register("planb", createRouter)
hc.AddChecker("Router Hipache", router.BuildHealthCheck("hipache"))
hc.AddChecker("Router Planb", router.BuildHealthCheck("planb"))
}
示例5: init
func init() {
router.Register(routerType, createRouter)
}
示例6: init
func init() {
router.Register("hipache", hipacheRouter{})
}
示例7: init
func init() {
router.Register(routerName, createRouter)
}
示例8: init
func init() {
router.Register(routerName, createRouter)
hc.AddChecker("Router Hipache", router.BuildHealthCheck("hipache"))
}