Skip to content

Commit 9d7ff67

Browse files
committed
パッケージ名を変更した
1 parent 553cf42 commit 9d7ff67

8 files changed

+11
-7
lines changed

channel_listener.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"context"

doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package gss is a web server using GraphQL over WebSocket Protocol: https://github.com/apollographql/subscriptions-transport-ws/blob/master/PROTOCOL.md
2+
//
3+
// See README.md for more info.
4+
package gss

field_resolver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"errors"

handler/auth.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"net/http"

handler/handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import gss "github.com/taiyoh/graphqlws-subscription-server"
44

handler/notifier.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"bytes"

receiver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"context"

server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphqlws_subscription_server
1+
package gss
22

33
import (
44
"context"

0 commit comments

Comments
 (0)