1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-10-28 01:59:38 +01:00

chore: move geoip into services directory

This commit is contained in:
Gabe Kangas 2024-07-02 21:26:33 -07:00
parent 228e821a5f
commit c963512934
6 changed files with 5 additions and 5 deletions

View file

@ -14,8 +14,8 @@ import (
"github.com/owncast/owncast/config"
"github.com/owncast/owncast/core/chat/events"
"github.com/owncast/owncast/core/data"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/models"
"github.com/owncast/owncast/services/geoip"
)
// Client represents a single chat client.

View file

@ -15,9 +15,9 @@ import (
"github.com/owncast/owncast/core/chat/events"
"github.com/owncast/owncast/core/data"
"github.com/owncast/owncast/core/webhooks"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/models"
"github.com/owncast/owncast/persistence/userrepository"
"github.com/owncast/owncast/services/geoip"
"github.com/owncast/owncast/utils"
)

View file

@ -8,8 +8,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/owncast/owncast/core/data"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/models"
"github.com/owncast/owncast/services/geoip"
)
var (

View file

@ -4,7 +4,7 @@ import (
"net/http"
"time"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/services/geoip"
"github.com/owncast/owncast/utils"
)

View file

@ -4,7 +4,7 @@ import (
"net/http"
"time"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/services/geoip"
"github.com/owncast/owncast/utils"
)