Skip to content

Commit 7baaa5a

Browse files
committed
Adding standards code.
1 parent 98a5af5 commit 7baaa5a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

controllers/sender.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/mailgun/mailgun-go"
1111

12-
"../models"
12+
"github.com/dev-lusaja/gomail/models"
1313
)
1414

1515
var (

routes/routes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package routes
33
import(
44
"github.com/gorilla/mux"
55

6-
"../controllers"
6+
"github.com/dev-lusaja/gomail/controllers"
77
)
88

99
func Load(r *mux.Router) {

server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010

1111
"github.com/gorilla/mux"
1212

13-
"./routes"
14-
"./models"
13+
"github.com/dev-lusaja/gomail/routes"
14+
"github.com/dev-lusaja/gomail/models"
1515
)
1616

1717
var server models.Server

0 commit comments

Comments
 (0)