moved yaml parsing to yaml package

This commit is contained in:
Brad Rydzewski 2015-05-17 11:36:12 -07:00
parent 4c847296d4
commit f58b48d329
11 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,8 @@ package parser
import (
"github.com/drone/drone/common"
"github.com/drone/drone/parser/inject"
"github.com/drone/drone/parser/matrix"
"github.com/drone/drone/pkg/yaml/inject"
"github.com/drone/drone/pkg/yaml/matrix"
"gopkg.in/yaml.v2"
)

View file

@ -7,7 +7,7 @@ import (
"time"
"github.com/drone/drone/common"
"github.com/drone/drone/parser/inject"
"github.com/drone/drone/pkg/yaml/inject"
"github.com/drone/drone/queue"
"github.com/gin-gonic/gin"
// "github.com/gin-gonic/gin/binding"

View file

@ -5,9 +5,9 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/drone/drone/common"
"github.com/drone/drone/parser"
"github.com/drone/drone/parser/inject"
"github.com/drone/drone/parser/matrix"
"github.com/drone/drone/pkg/yaml"
"github.com/drone/drone/pkg/yaml/inject"
"github.com/drone/drone/pkg/yaml/matrix"
"github.com/drone/drone/queue"
"github.com/gin-gonic/gin"
)