moved to single binary project structure

This commit is contained in:
Brad Rydzewski
2015-09-29 17:53:21 -07:00
parent 76ea19aca0
commit 155576fb03
139 changed files with 0 additions and 9815 deletions

11
controller/queue.go Normal file
View File

@@ -0,0 +1,11 @@
package server
import (
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
)
func GetQueue(c *gin.Context) {
queue := ToQueue(c)
items := queue.Items()
c.JSON(200, items)
}