Skip to content

Commit

Permalink
move packages into pkg/ directory
Browse files Browse the repository at this point in the history
we need to make room for commands, so this is the first step to bringing
this project more in line with a standard go project layout.

following the guidelines at https://github.com/golang-standards/project-layout
  • Loading branch information
Rob-Johnson committed Oct 17, 2019
1 parent 124d000 commit f4bb4db
Show file tree
Hide file tree
Showing 14 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package deployments
import (
"fmt"

paastaconfig "github.com/Yelp/paasta-tools-go/config"
paastaconfig "github.com/Yelp/paasta-tools-go/pkg/config"
)

// V2DeploymentGroup ...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

paastaconfig "github.com/Yelp/paasta-tools-go/config"
paastaconfig "github.com/Yelp/paasta-tools-go/pkg/config"
)

const (
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion volumes/converter.go → pkg/volumes/converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package volumes

import (
"fmt"
paastaconfig "github.com/Yelp/paasta-tools-go/config"
paastaconfig "github.com/Yelp/paasta-tools-go/pkg/config"
corev1 "k8s.io/api/core/v1"
"log"
"strings"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion volumes/volumes.go → pkg/volumes/volumes.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package volumes

import (
"github.com/Yelp/paasta-tools-go/config"
"github.com/Yelp/paasta-tools-go/pkg/config"
)

type VolumeConfig struct {
Expand Down
File renamed without changes.

0 comments on commit f4bb4db

Please sign in to comment.