Skip to content

Commit eadfb66

Browse files
author
naren
committed
Refactor imports to support go get from github
1 parent bf891b8 commit eadfb66

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

backend/fileio/fileWriter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package fileio
22

33
import (
4-
. "naren/kulay/logger"
4+
. "github.com/DudeWhoCode/kulay/logger"
55
"os"
66
)
77

backend/sqs/sqs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package sqsapp
33
import (
44
"github.com/aws/aws-sdk-go/service/sqs"
55
"github.com/aws/aws-sdk-go/aws"
6-
. "naren/kulay/logger"
7-
"naren/kulay/backend"
6+
. "github.com/DudeWhoCode/kulay/logger"
7+
"github.com/DudeWhoCode/kulay/backend"
88
)
99

1010
var svc *sqs.SQS

cmd/root.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package cmd
22

33
import (
44
"github.com/spf13/cobra"
5-
"naren/kulay/config"
6-
ksqs "naren/kulay/backend/sqs"
7-
jsonl "naren/kulay/backend/fileio"
5+
"github.com/DudeWhoCode/kulay/config"
6+
ksqs "github.com/DudeWhoCode/kulay/backend/sqs"
7+
jsonl "github.com/DudeWhoCode/kulay/backend/fileio"
88
"os"
99
"strings"
10-
. "naren/kulay/logger"
10+
. "github.com/DudeWhoCode/kulay/logger"
1111
)
1212

1313
var FromFlag string

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package config
22

33
import (
44
"github.com/spf13/viper"
5-
. "naren/kulay/logger"
5+
. "github.com/DudeWhoCode/kulay/logger"
66
"os"
77
"path"
88
"path/filepath"

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"naren/kulay/cmd"
5-
. "naren/kulay/logger"
4+
"github.com/DudeWhoCode/kulay/cmd"
5+
. "github.com/DudeWhoCode/kulay/logger"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)