feat: move notifications under services

This commit is contained in:
Gabe Kangas 2023-06-14 17:31:52 -07:00
parent ea3803ec85
commit 79b6d6c0af
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
8 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ import (
"github.com/owncast/owncast/core/transcoder" "github.com/owncast/owncast/core/transcoder"
"github.com/owncast/owncast/core/webhooks" "github.com/owncast/owncast/core/webhooks"
"github.com/owncast/owncast/models" "github.com/owncast/owncast/models"
"github.com/owncast/owncast/notifications" "github.com/owncast/owncast/services/notifications"
"github.com/owncast/owncast/utils" "github.com/owncast/owncast/utils"
"github.com/owncast/owncast/yp" "github.com/owncast/owncast/yp"
) )

View File

@ -15,7 +15,7 @@ import (
"github.com/owncast/owncast/core/transcoder" "github.com/owncast/owncast/core/transcoder"
"github.com/owncast/owncast/core/webhooks" "github.com/owncast/owncast/core/webhooks"
"github.com/owncast/owncast/models" "github.com/owncast/owncast/models"
"github.com/owncast/owncast/notifications" "github.com/owncast/owncast/services/notifications"
"github.com/owncast/owncast/utils" "github.com/owncast/owncast/utils"
) )

View File

@ -6,8 +6,8 @@ import (
"github.com/owncast/owncast/config" "github.com/owncast/owncast/config"
"github.com/owncast/owncast/core/data" "github.com/owncast/owncast/core/data"
"github.com/owncast/owncast/models" "github.com/owncast/owncast/models"
"github.com/owncast/owncast/notifications/browser" "github.com/owncast/owncast/services/notifications/browser"
"github.com/owncast/owncast/notifications/discord" "github.com/owncast/owncast/services/notifications/discord"
"github.com/pkg/errors" "github.com/pkg/errors"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
) )

View File

@ -4,8 +4,8 @@ import (
"encoding/json" "encoding/json"
"net/http" "net/http"
"github.com/owncast/owncast/core/user" "github.com/owncast/owncast/models"
"github.com/owncast/owncast/notifications" "github.com/owncast/owncast/services/notifications"
"github.com/owncast/owncast/webserver/responses" "github.com/owncast/owncast/webserver/responses"
"github.com/owncast/owncast/utils" "github.com/owncast/owncast/utils"