Skip to content

Commit fca695d

Browse files
committed
Added log imports
1 parent f919a1b commit fca695d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

auth/jwt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66
"time"
7-
7+
"log"
88
"github.com/golang-jwt/jwt/v5"
99
)
1010

models/users.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package models
22

3+
import (
4+
"log"
5+
)
6+
37
type User struct {
48
ID uint `json:"id" gorm:"primary_key"`
59
Firebase_UID string `json:"firebase_uid" gorm:"uniqueIndex"`

0 commit comments

Comments
 (0)