Skip to content

Commit

Permalink
updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun committed Jun 16, 2017
1 parent 2333c6e commit ca43c5e
Show file tree
Hide file tree
Showing 21 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion bucket/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"qaz/logger"
"github.com/daidokoro/qaz/logger"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
2 changes: 1 addition & 1 deletion commands/aws_lambda.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"
"strings"

"github.com/aws/aws-sdk-go/aws"
Expand Down
2 changes: 1 addition & 1 deletion commands/change.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"

"github.com/spf13/cobra"
)
Expand Down
8 changes: 4 additions & 4 deletions commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (

yaml "gopkg.in/yaml.v2"

"qaz/bucket"
"qaz/repo"
stks "qaz/stacks"
"qaz/utils"
"github.com/daidokoro/qaz/bucket"
"github.com/daidokoro/qaz/repo"
stks "github.com/daidokoro/qaz/stacks"
"github.com/daidokoro/qaz/utils"

"github.com/CrowdSurge/banner"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion commands/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

yaml "gopkg.in/yaml.v2"

stks "qaz/stacks"
stks "github.com/daidokoro/qaz/stacks"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudformation"
Expand Down
4 changes: 2 additions & 2 deletions commands/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
"qaz/bucket"
"qaz/utils"
"github.com/daidokoro/qaz/bucket"
"github.com/daidokoro/qaz/utils"
"regexp"
"strings"
)
Expand Down
6 changes: 3 additions & 3 deletions commands/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package commands

import (
"fmt"
"qaz/repo"
"qaz/utils"
"github.com/daidokoro/qaz/repo"
"github.com/daidokoro/qaz/utils"
"strings"

stks "qaz/stacks"
stks "github.com/daidokoro/qaz/stacks"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions commands/functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package commands
import (
"fmt"
"io/ioutil"
"qaz/bucket"
stks "qaz/stacks"
"qaz/utils"
"github.com/daidokoro/qaz/bucket"
stks "github.com/daidokoro/qaz/stacks"
"github.com/daidokoro/qaz/utils"
"strings"
"text/template"

Expand Down
2 changes: 1 addition & 1 deletion commands/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"
"strings"

"github.com/spf13/cobra"
Expand Down
4 changes: 2 additions & 2 deletions commands/outputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package commands
import (
"encoding/json"
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"

stks "qaz/stacks"
stks "github.com/daidokoro/qaz/stacks"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions commands/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package commands

import (
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"
"strings"

stks "qaz/stacks"
stks "github.com/daidokoro/qaz/stacks"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions commands/vars.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package commands

import (
"qaz/logger"
"qaz/repo"
stks "qaz/stacks"
"github.com/daidokoro/qaz/logger"
"github.com/daidokoro/qaz/repo"
stks "github.com/daidokoro/qaz/stacks"
"sync"
)

Expand Down
2 changes: 1 addition & 1 deletion repo/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"os"
"path/filepath"
"qaz/logger"
"github.com/daidokoro/qaz/logger"
"strings"
"syscall"

Expand Down
2 changes: 1 addition & 1 deletion stacks/change.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stacks
import (
"encoding/json"
"fmt"
"qaz/bucket"
"github.com/daidokoro/qaz/bucket"
"strings"
"time"

Expand Down
2 changes: 1 addition & 1 deletion stacks/clouformation.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package stacks

import (
"fmt"
"qaz/utils"
"github.com/daidokoro/qaz/utils"
"sync"
"time"

Expand Down
4 changes: 2 additions & 2 deletions stacks/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
"qaz/bucket"
"qaz/utils"
"github.com/daidokoro/qaz/bucket"
"github.com/daidokoro/qaz/utils"
"regexp"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion stacks/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"qaz/bucket"
"github.com/daidokoro/qaz/bucket"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudformation"
Expand Down
4 changes: 2 additions & 2 deletions stacks/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"sync"

"qaz/logger"
"qaz/repo"
"github.com/daidokoro/qaz/logger"
"github.com/daidokoro/qaz/repo"

"text/template"

Expand Down
2 changes: 1 addition & 1 deletion stacks/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"qaz/bucket"
"github.com/daidokoro/qaz/bucket"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudformation"
Expand Down
4 changes: 2 additions & 2 deletions tests/stack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package tests

import (
"fmt"
"qaz/logger"
stks "qaz/stacks"
"github.com/daidokoro/qaz/logger"
stks "github.com/daidokoro/qaz/stacks"
"testing"

"github.com/aws/aws-sdk-go/aws"
Expand Down
2 changes: 1 addition & 1 deletion utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"io/ioutil"
"net/http"
"os"
"qaz/logger"
"github.com/daidokoro/qaz/logger"
"strconv"
"strings"
"time"
Expand Down

0 comments on commit ca43c5e

Please sign in to comment.