From 4856397acfe9876c68906cf5c31a40e07877eb59 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 15 Jun 2023 13:17:02 -0700 Subject: [PATCH] feat: move video storage providers under video --- core/storage.go | 2 +- {core => video}/storageproviders/local.go | 0 {core => video}/storageproviders/rewriteLocalPlaylist.go | 0 {core => video}/storageproviders/s3Storage.go | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename {core => video}/storageproviders/local.go (100%) rename {core => video}/storageproviders/rewriteLocalPlaylist.go (100%) rename {core => video}/storageproviders/s3Storage.go (100%) diff --git a/core/storage.go b/core/storage.go index 90900d945..d64d652eb 100644 --- a/core/storage.go +++ b/core/storage.go @@ -2,7 +2,7 @@ package core import ( "github.com/owncast/owncast/core/data" - "github.com/owncast/owncast/core/storageproviders" + "github.com/owncast/owncast/video/storageproviders" ) func setupStorage() error { diff --git a/core/storageproviders/local.go b/video/storageproviders/local.go similarity index 100% rename from core/storageproviders/local.go rename to video/storageproviders/local.go diff --git a/core/storageproviders/rewriteLocalPlaylist.go b/video/storageproviders/rewriteLocalPlaylist.go similarity index 100% rename from core/storageproviders/rewriteLocalPlaylist.go rename to video/storageproviders/rewriteLocalPlaylist.go diff --git a/core/storageproviders/s3Storage.go b/video/storageproviders/s3Storage.go similarity index 100% rename from core/storageproviders/s3Storage.go rename to video/storageproviders/s3Storage.go