Change go module name

This commit is contained in:
Alf Sebastian Houge
2023-02-16 22:35:03 +01:00
parent a8c85bcd7d
commit 9da21b2192
26 changed files with 69 additions and 54 deletions

View File

@@ -3,7 +3,7 @@ package models
import (
"time"
"github.com/akhilrex/hammond/db"
"hammond/db"
)
type CreateAlertModel struct {

View File

@@ -1,6 +1,6 @@
package models
import "github.com/akhilrex/hammond/db"
import "hammond/db"
type LoginResponse struct {
Name string `json:"name"`

View File

@@ -1,6 +1,6 @@
package models
import "github.com/akhilrex/hammond/db"
import "hammond/db"
type UpdateSettingModel struct {
Currency string `json:"currency" form:"currency" query:"currency"`

View File

@@ -4,7 +4,7 @@ import (
"encoding/json"
"time"
"github.com/akhilrex/hammond/db"
"hammond/db"
)
type MileageModel struct {

View File

@@ -3,7 +3,8 @@ package models
import (
"time"
"github.com/akhilrex/hammond/db"
"hammond/db"
_ "github.com/go-playground/validator/v10"
)