mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
e37e27036e
This gives the user a friendly message when the server shuts down.
18 lines
411 B
Go
18 lines
411 B
Go
package main
|
|
|
|
type clientCredentials struct {
|
|
Username string `json:"username,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
}
|
|
|
|
type client interface {
|
|
Group() *group
|
|
Id() string
|
|
Credentials() clientCredentials
|
|
pushConn(id string, conn upConnection, tracks []upTrack, label string) error
|
|
pushClient(id, username string, add bool) error
|
|
}
|
|
|
|
type kickable interface {
|
|
kick(message string) error
|
|
}
|