From cb5cf7cecbf36c83cb7bf01e25afff6f8d97bce9 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 14 Jun 2023 17:47:12 -0700 Subject: [PATCH] feat: move yp under services --- core/core.go | 2 +- {yp => services/yp}/README.md | 0 {yp => services/yp}/yp.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {yp => services/yp}/README.md (100%) rename {yp => services/yp}/yp.go (100%) diff --git a/core/core.go b/core/core.go index ac7a7586b..cf9d5e0e6 100644 --- a/core/core.go +++ b/core/core.go @@ -14,10 +14,10 @@ import ( "github.com/owncast/owncast/core/webhooks" "github.com/owncast/owncast/models" "github.com/owncast/owncast/services/notifications" + "github.com/owncast/owncast/services/yp" "github.com/owncast/owncast/utils" "github.com/owncast/owncast/video/rtmp" "github.com/owncast/owncast/video/transcoder" - "github.com/owncast/owncast/yp" ) var ( diff --git a/yp/README.md b/services/yp/README.md similarity index 100% rename from yp/README.md rename to services/yp/README.md diff --git a/yp/yp.go b/services/yp/yp.go similarity index 100% rename from yp/yp.go rename to services/yp/yp.go