refac: renamed 'GoCMS' -> 'RenewCMS'

This commit is contained in:
Florian Sylvain
2025-11-17 19:46:53 +01:00
parent b470bfcc67
commit 83a1dec8ae
66 changed files with 116 additions and 116 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/article"
"GoCMS/domain/gateways"
"RenewCMS/domain/article"
"RenewCMS/domain/gateways"
)
type CreateArticleUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/gateways"
"GoCMS/domain/image"
"RenewCMS/domain/gateways"
"RenewCMS/domain/image"
"mime/multipart"
)
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/gateways"
"GoCMS/domain/user"
"RenewCMS/domain/gateways"
"RenewCMS/domain/user"
)
type CreateUserUseCase struct {
+1 -1
View File
@@ -1,7 +1,7 @@
package useCases
import (
"GoCMS/domain/gateways"
"RenewCMS/domain/gateways"
)
type DeleteArticleUseCase struct {
+1 -1
View File
@@ -1,7 +1,7 @@
package useCases
import (
"GoCMS/domain/gateways"
"RenewCMS/domain/gateways"
)
type DeleteImageUseCase struct {
+1 -1
View File
@@ -1,7 +1,7 @@
package useCases
import (
"GoCMS/domain/gateways"
"RenewCMS/domain/gateways"
)
type DeleteUserUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/article"
"GoCMS/domain/gateways"
"RenewCMS/domain/article"
"RenewCMS/domain/gateways"
)
type GetArticleUseCase struct {
+1 -1
View File
@@ -1,7 +1,7 @@
package useCases
import (
"GoCMS/domain/gateways"
"RenewCMS/domain/gateways"
)
type GetPageUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/gateways"
"GoCMS/domain/user"
"RenewCMS/domain/gateways"
"RenewCMS/domain/user"
)
type GetUserUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/article"
"GoCMS/domain/gateways"
"RenewCMS/domain/article"
"RenewCMS/domain/gateways"
)
type ListArticlesUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/gateways"
"GoCMS/domain/user"
"RenewCMS/domain/gateways"
"RenewCMS/domain/user"
)
type ListUsersUseCase struct {
+1 -1
View File
@@ -1,7 +1,7 @@
package useCases
import (
"GoCMS/domain/gateways"
"RenewCMS/domain/gateways"
)
type SendMailUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/article"
"GoCMS/domain/gateways"
"RenewCMS/domain/article"
"RenewCMS/domain/gateways"
)
type UpdateArticleUseCase struct {
+2 -2
View File
@@ -1,8 +1,8 @@
package useCases
import (
"GoCMS/domain/gateways"
"GoCMS/domain/user"
"RenewCMS/domain/gateways"
"RenewCMS/domain/user"
)
type UpdateUserUseCase struct {