feat: move geoip into services

This commit is contained in:
Gabe Kangas 2023-06-14 17:29:42 -07:00
parent 05203d1f9e
commit ea3803ec85
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
6 changed files with 5 additions and 5 deletions

View File

@ -13,8 +13,8 @@ import (
"github.com/gorilla/websocket"
"github.com/owncast/owncast/config"
"github.com/owncast/owncast/core/chat/events"
"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,8 +15,8 @@ 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/services/geoip"
"github.com/owncast/owncast/storage"
"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"
)