Skip to content

Commit

Permalink
♻️ Simplify directory hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenWaygate committed Aug 8, 2024
1 parent fd8966c commit 915665d
Show file tree
Hide file tree
Showing 87 changed files with 49 additions and 54 deletions.
2 changes: 1 addition & 1 deletion cmd/activity/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package activity

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/activity"
"github.com/eat-pray-ai/yutu/pkg/activity"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/caption/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package caption

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/caption"
"github.com/eat-pray-ai/yutu/pkg/caption"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/caption/download.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package caption

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/caption"
"github.com/eat-pray-ai/yutu/pkg/caption"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/caption/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package caption

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/caption"
"github.com/eat-pray-ai/yutu/pkg/caption"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/caption/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package caption

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/caption"
"github.com/eat-pray-ai/yutu/pkg/caption"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/caption/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package caption

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/caption"
"github.com/eat-pray-ai/yutu/pkg/caption"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/channel/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package channel

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/channel"
"github.com/eat-pray-ai/yutu/pkg/channel"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/channel/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package channel

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/channel"
"github.com/eat-pray-ai/yutu/pkg/channel"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/channelBanner/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package channelBanner

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/channelBanner"
"github.com/eat-pray-ai/yutu/pkg/channelBanner"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/channelSection/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package channelSection

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/channelSection"
"github.com/eat-pray-ai/yutu/pkg/channelSection"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/channelSection/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package channelSection

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/channelSection"
"github.com/eat-pray-ai/yutu/pkg/channelSection"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/markAsSpam.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/setModerationStatus.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/comment/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package comment

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/comment"
"github.com/eat-pray-ai/yutu/pkg/comment"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/commentThread/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commentThread

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/commentThread"
"github.com/eat-pray-ai/yutu/pkg/commentThread"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/commentThread/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commentThread

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/commentThread"
"github.com/eat-pray-ai/yutu/pkg/commentThread"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/i18nLanguage/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package i18nLanguage

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/i18nLanguage"
"github.com/eat-pray-ai/yutu/pkg/i18nLanguage"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/i18nRegion/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package i18nRegion

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/i18nRegion"
"github.com/eat-pray-ai/yutu/pkg/i18nRegion"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/member/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package member

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/member"
"github.com/eat-pray-ai/yutu/pkg/member"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/membershipsLevel/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package membershipsLevel

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/membershipsLevel"
"github.com/eat-pray-ai/yutu/pkg/membershipsLevel"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlist/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlist

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlist"
"github.com/eat-pray-ai/yutu/pkg/playlist"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlist/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlist

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlist"
"github.com/eat-pray-ai/yutu/pkg/playlist"
"github.com/spf13/cobra"
)

Expand Down
3 changes: 1 addition & 2 deletions cmd/playlist/list.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package playlist

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlist"

"github.com/eat-pray-ai/yutu/pkg/playlist"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlist/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlist

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlist"
"github.com/eat-pray-ai/yutu/pkg/playlist"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlistItem/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlistItem

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlistItem"
"github.com/eat-pray-ai/yutu/pkg/playlistItem"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlistItem/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlistItem

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlistItem"
"github.com/eat-pray-ai/yutu/pkg/playlistItem"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlistItem/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlistItem

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlistItem"
"github.com/eat-pray-ai/yutu/pkg/playlistItem"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/playlistItem/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package playlistItem

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/playlistItem"
"github.com/eat-pray-ai/yutu/pkg/playlistItem"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/search/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package search

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/search"
"github.com/eat-pray-ai/yutu/pkg/search"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/subscription/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package subscription

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/subscription"
"github.com/eat-pray-ai/yutu/pkg/subscription"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/subscription/insert.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package subscription

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/subscription"
"github.com/eat-pray-ai/yutu/pkg/subscription"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/subscription/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package subscription

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/subscription"
"github.com/eat-pray-ai/yutu/pkg/subscription"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/thumbnail/set.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package thumbnail

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/thumbnail"
"github.com/eat-pray-ai/yutu/pkg/thumbnail"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/video/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"
"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
3 changes: 1 addition & 2 deletions cmd/video/getRating.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"

"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
3 changes: 1 addition & 2 deletions cmd/video/insert.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"

"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
3 changes: 1 addition & 2 deletions cmd/video/list.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"

"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
3 changes: 1 addition & 2 deletions cmd/video/rate.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"

"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/video/reportAbuse.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"
"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/video/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package video

import (
"github.com/eat-pray-ai/yutu/pkg/yutuber/video"
"github.com/eat-pray-ai/yutu/pkg/video"
"github.com/spf13/cobra"
)

Expand Down
Loading

0 comments on commit 915665d

Please # to comment.