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
+1 -1
View File
@@ -1,6 +1,6 @@
package main
import "GoCMS/main/server"
import "RenewCMS/main/server"
func main() {
router := server.InitServer()
+3 -3
View File
@@ -1,9 +1,9 @@
package route
import (
"GoCMS/api/controllers/article"
"GoCMS/api/controllers/auth"
"GoCMS/api/controllers/pages"
"RenewCMS/api/controllers/article"
"RenewCMS/api/controllers/auth"
"RenewCMS/api/controllers/pages"
"encoding/json"
"net/http"
"os"
+2 -2
View File
@@ -1,8 +1,8 @@
package server
import (
"GoCMS/api"
"GoCMS/main/route"
"RenewCMS/api"
"RenewCMS/main/route"
"fmt"
"github.com/go-chi/chi/v5"
"github.com/joho/godotenv"