mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-08 19:51:02 +00:00
197b296a24
Now Event is an interface. Moved all events stuff to separate events module.
11 lines
163 B
Go
11 lines
163 B
Go
package rooms
|
|
|
|
type JoinRule string
|
|
|
|
const (
|
|
Public JoinRule = "public"
|
|
Knock = "knock"
|
|
Invite = "invite"
|
|
Private = "private"
|
|
)
|