From 57dc9efaaef3756f5b432b030973295934634544 Mon Sep 17 00:00:00 2001 From: "Kim \"BKC\" Carlbäcker" Date: Tue, 29 Nov 2016 09:09:17 +0100 Subject: Update gitea/sdk vendor --- vendor/code.gitea.io/sdk/gitea/utils.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vendor/code.gitea.io/sdk/gitea/utils.go') diff --git a/vendor/code.gitea.io/sdk/gitea/utils.go b/vendor/code.gitea.io/sdk/gitea/utils.go index 8d962ba288..80892a1e7a 100644 --- a/vendor/code.gitea.io/sdk/gitea/utils.go +++ b/vendor/code.gitea.io/sdk/gitea/utils.go @@ -10,14 +10,17 @@ import ( var jsonHeader = http.Header{"content-type": []string{"application/json"}} +// Bool return address of bool value func Bool(v bool) *bool { return &v } +// String return address of string value func String(v string) *string { return &v } +// Int64 return address of int64 value func Int64(v int64) *int64 { return &v } -- cgit v1.2.3