Rename movie group backend (#5044)

* Rename movie go files
* Rename movie package to group
This commit is contained in:
WithoutPants
2024-07-04 11:36:05 +10:00
committed by GitHub
parent 3ddfafa831
commit 720b233be6
21 changed files with 16 additions and 16 deletions

View File

@@ -7,7 +7,7 @@ import (
"io/fs"
)
//go:embed performer performer_male scene image tag studio movie
//go:embed performer performer_male scene image tag studio group
var data embed.FS
const (
@@ -26,8 +26,8 @@ const (
Studio = "studio"
DefaultStudioImage = "studio/studio.svg"
Group = "movie"
DefaultGroupImage = "movie/movie.png"
Group = "group"
DefaultGroupImage = "group/group.png"
)
// Sub returns an FS rooted at path, using fs.Sub.