refine tenant api

Signed-off-by: hongming <talonwan@yunify.com>
This commit is contained in:
hongming
2019-04-01 02:59:19 +08:00
parent 744bd053e3
commit 93ad572e19
202 changed files with 13517 additions and 7951 deletions

13
vendor/gopkg.in/igm/sockjs-go.v2/sockjs/sockjs.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
package sockjs
// Session represents a connection between server and client.
type Session interface {
// Id returns a session id
ID() string
// Recv reads one text frame from session
Recv() (string, error)
// Send sends one text frame to session
Send(string) error
// Close closes the session with provided code and reason.
Close(status uint32, reason string) error
}