Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Using github.com/rehabaam/TDBackend instead of TDBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
rehabaam committed Nov 12, 2023
1 parent 43e2d5b commit 405a14b
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions TDWorker.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package main

import (
"TDBackend/config"
labels "TDBackend/localization"
"TDBackend/logger"
commands "TDBackend/services"
"github.com/rehabaam/TDBackend/config"
labels "github.com/rehabaam/TDBackend/localization"
"github.com/rehabaam/TDBackend/logger"
commands "github.com/rehabaam/TDBackend/services"
"fmt"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions TDWorker_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
labels "TDBackend/localization"
applog "TDBackend/logger"
labels "github.com/rehabaam/TDBackend/localization"
applog "github.com/rehabaam/TDBackend/logger"

"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module TDBackend
module github.com/rehabaam/TDBackend

go 1.21

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

import (
labels "TDBackend/localization"
labels "github.com/rehabaam/TDBackend/localization"
"fmt"
"os"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion middleware/logger.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package middleware

import (
labels "TDBackend/localization"
labels "github.com/rehabaam/TDBackend/localization"

"net/http"
"strings"
Expand Down
4 changes: 2 additions & 2 deletions middleware/logger_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package middleware

import (
labels "TDBackend/localization"
applog "TDBackend/logger"
labels "github.com/rehabaam/TDBackend/localization"
applog "github.com/rehabaam/TDBackend/logger"
"crypto/tls"
"net/http"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion services/commands_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commands

import (
"TDBackend/logger"
"github.com/rehabaam/TDBackend/logger"
"context"
"net/http"
"net/http/httptest"
Expand Down
4 changes: 2 additions & 2 deletions services/common.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
labels "TDBackend/localization"
"TDBackend/logger"
labels "github.com/rehabaam/TDBackend/localization"
"github.com/rehabaam/TDBackend/logger"
"fmt"
"io"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion services/common_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commands

import (
"TDBackend/logger"
"github.com/rehabaam/TDBackend/logger"
"bytes"
"encoding/json"
"fmt"
Expand Down

0 comments on commit 405a14b

Please sign in to comment.