From 55bbfac16d2df3958110d6d0bd12b02426a5c881 Mon Sep 17 00:00:00 2001 From: Fluf <36822577+flufmonster@users.noreply.github.com> Date: Thu, 24 May 2018 22:02:13 -0400 Subject: [PATCH] Add comment to struct --- modules/recaptcha/recaptcha.go | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/recaptcha/recaptcha.go b/modules/recaptcha/recaptcha.go index 1ee93ce8a..fb9267c02 100644 --- a/modules/recaptcha/recaptcha.go +++ b/modules/recaptcha/recaptcha.go @@ -15,6 +15,7 @@ import ( "code.gitea.io/gitea/modules/setting" ) +// Response is the structure of JSON returned from API type Response struct { Success bool `json:"success"` ChallengeTS time.Time `json:"challenge_ts"`