fix naming

This commit is contained in:
maddalax 2024-10-16 15:29:01 -05:00
parent f40e7baa8b
commit 6783fcf251
9 changed files with 15 additions and 15 deletions

View file

@ -2,8 +2,8 @@ package pages
import ( import (
"fmt" "fmt"
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"github.com/maddalax/htmgo/extensions/ws/ws" "github.com/maddalax/htmgo/extensions/websocket/ws"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
"sse-with-state/partials" "sse-with-state/partials"
) )

View file

@ -1,7 +1,7 @@
package pages package pages
import ( import (
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
) )

View file

@ -1,8 +1,8 @@
package partials package partials
import ( import (
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"github.com/maddalax/htmgo/extensions/ws/ws" "github.com/maddalax/htmgo/extensions/websocket/ws"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
) )

View file

@ -2,7 +2,7 @@ package partials
import ( import (
"fmt" "fmt"
"github.com/maddalax/htmgo/extensions/ws/ws" "github.com/maddalax/htmgo/extensions/websocket/ws"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
) )

View file

@ -1,8 +1,8 @@
package websocket package websocket
import ( import (
"github.com/maddalax/htmgo/extensions/ws/internal/wsutil" "github.com/maddalax/htmgo/extensions/websocket/internal/wsutil"
"github.com/maddalax/htmgo/extensions/ws/ws" "github.com/maddalax/htmgo/extensions/websocket/ws"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
"github.com/maddalax/htmgo/framework/service" "github.com/maddalax/htmgo/framework/service"
) )

View file

@ -2,7 +2,7 @@ package state
import ( import (
"fmt" "fmt"
"github.com/maddalax/htmgo/extensions/ws/internal" "github.com/maddalax/htmgo/extensions/websocket/internal"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
"github.com/puzpuzpuz/xsync/v3" "github.com/puzpuzpuz/xsync/v3"
) )

View file

@ -2,8 +2,8 @@ package ws
import ( import (
"fmt" "fmt"
"github.com/maddalax/htmgo/extensions/ws/internal/wsutil" "github.com/maddalax/htmgo/extensions/websocket/internal/wsutil"
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"sync" "sync"
) )

View file

@ -2,8 +2,8 @@ package ws
import ( import (
"fmt" "fmt"
"github.com/maddalax/htmgo/extensions/ws/internal/wsutil" "github.com/maddalax/htmgo/extensions/websocket/internal/wsutil"
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"github.com/maddalax/htmgo/framework/service" "github.com/maddalax/htmgo/framework/service"
"time" "time"
) )

View file

@ -1,8 +1,8 @@
package ws package ws
import ( import (
"github.com/maddalax/htmgo/extensions/ws/internal/wsutil" "github.com/maddalax/htmgo/extensions/websocket/internal/wsutil"
"github.com/maddalax/htmgo/extensions/ws/state" "github.com/maddalax/htmgo/extensions/websocket/state"
"github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/h"
"github.com/puzpuzpuz/xsync/v3" "github.com/puzpuzpuz/xsync/v3"
"sync" "sync"