From 3349089d2aa255f0bab4b112b45ec0b98ff9c3f8 Mon Sep 17 00:00:00 2001 From: Joachim Hill-Grannec Date: Sat, 25 Jun 2016 22:59:41 -0700 Subject: [PATCH] Moved struct --- remote/bitbucketserver/types.go | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/remote/bitbucketserver/types.go b/remote/bitbucketserver/types.go index d4876ad9a..9b77600e9 100644 --- a/remote/bitbucketserver/types.go +++ b/remote/bitbucketserver/types.go @@ -84,35 +84,4 @@ type postHook struct { } `json:"repository"` } -type BSRepo struct { - Forkable bool `json:"forkable"` - ID int `json:"id"` - Links struct { - Clone []struct { - Href string `json:"href"` - Name string `json:"name"` - } `json:"clone"` - Self []struct { - Href string `json:"href"` - } `json:"self"` - } `json:"links"` - Name string `json:"name"` - Project struct { - Description string `json:"description"` - ID int `json:"id"` - Key string `json:"key"` - Links struct { - Self []struct { - Href string `json:"href"` - } `json:"self"` - } `json:"links"` - Name string `json:"name"` - Public bool `json:"public"` - Type string `json:"type"` - } `json:"project"` - Public bool `json:"public"` - ScmID string `json:"scmId"` - Slug string `json:"slug"` - State string `json:"state"` - StatusMessage string `json:"statusMessage"` -} +