예제 #1
0
파일: remote.go 프로젝트: pombredanne/geard
func (h *HttpRouterAddAliasRequest) HttpPath() string {
	return client.Inline("/frontend/:id/aliases", string(h.Frontend))
}
예제 #2
0
파일: remote.go 프로젝트: pombredanne/geard
func (h *HttpRouterGetRoutesRequest) HttpPath() string {
	return client.Inline("/frontend/:id/routes", string(h.Frontend))
}
예제 #3
0
파일: remote.go 프로젝트: pombredanne/geard
func (h *HttpRouterDeleteRouteRequest) HttpPath() string {
	return client.Inline("/frontend/:id/routes/:endpointId", string(h.Frontend), string(h.EndpointId))
}
예제 #4
0
파일: remote.go 프로젝트: pombredanne/geard
func (h *HttpRouterDeleteFrontendRequest) HttpPath() string {
	return client.Inline("/frontend/:id", string(h.Frontend))
}
예제 #5
0
파일: remote.go 프로젝트: jcantrill/geard
func (h *HttpGitArchiveContentRequest) HttpPath() string {
	return client.Inline("/repository/:id/archive/:ref", string(h.RepositoryId), string(h.Ref))
}
예제 #6
0
파일: remote.go 프로젝트: jcantrill/geard
func (h *HttpCreateRepositoryRequest) HttpPath() string {
	return client.Inline("/repository/:id", string(h.Id))
}