コード例 #1
0
ファイル: build.go プロジェクト: joemiller/env
// Build builds the REST component of a service request.
func Build(r *service.Request) {
	if r.ParamsFilled() {
		v := reflect.ValueOf(r.Params).Elem()
		buildLocationElements(r, v)
		buildBody(r, v)
	}
}