Skip to content

Commit

Permalink
Adding printing
Browse files Browse the repository at this point in the history
  • Loading branch information
COMTOP1 committed Nov 19, 2024
1 parent bb6aaae commit 0296677
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions link/link.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ func New() (*Link, error) {
}

link = strings.ReplaceAll(link, "'", "\"")
fmt.Println(link)

var data *Link
err = json.Unmarshal([]byte(link), &data)
Expand Down
1 change: 1 addition & 0 deletions team/team.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ func New() (*[]Member, error) {
}

team = strings.ReplaceAll(team, "'", "\"")
fmt.Println(team)

var data *[]Member
err = json.Unmarshal([]byte(team), &data)
Expand Down

0 comments on commit 0296677

Please sign in to comment.