This commit is contained in:
2025-11-11 02:33:05 +01:00
parent eb2c8fea64
commit 17a671a417
21 changed files with 560 additions and 73 deletions

View File

@@ -1,7 +1,7 @@
package http
import (
"go_oxspeak_server/network/http/handlers"
"go_oxspeak_server/network/http/web"
"github.com/gin-gonic/gin"
)
@@ -12,7 +12,7 @@ type Server struct {
}
func NewServer(addr string) *Server {
router := handlers.CreateRouter()
router := web.CreateRouter()
s := &Server{
router: router,