Skip to content

Commit

Permalink
fix: incorrect module name
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertYoung committed Sep 24, 2022
1 parent 784bd85 commit 18825d1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ package main

import (
"fmt"
haas "github/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"

haas "github.com/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"

"log"

Expand Down
3 changes: 2 additions & 1 deletion event-item.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package main
import (
"errors"
"fmt"
haas "github/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"
"strings"

haas "github.com/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"

"github.com/go-rod/rod"
)

Expand Down
2 changes: 1 addition & 1 deletion event-list-page.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import haas "github/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"
import haas "github.com/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"

type UnitedEventListPage struct {
*UnitedPage
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 github/robertyoung/manutd-ticket-checker/v2
module github.com/robertyoung/manutd-ticket-checker/v2

go 1.17

Expand Down
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package main

import (
haas "github/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"
"log"
"os"

haas "github.com/robertyoung/manutd-ticket-checker/v2/internal/home-assistant"

"github.com/urfave/cli/v2"
"github.com/urfave/cli/v2/altsrc"
)
Expand Down

0 comments on commit 18825d1

Please sign in to comment.