forked from External/grumble
17 lines
No EOL
323 B
Go
17 lines
No EOL
323 B
Go
// Copyright (c) 2011 The Grumble Authors
|
|
// The use of this source code is goverened by a BSD-style
|
|
// license that can be found in the LICENSE-file.
|
|
|
|
package freezer
|
|
|
|
type typeKind uint32
|
|
|
|
const (
|
|
ServerType typeKind = iota
|
|
ConfigKeyValuePairType
|
|
BanListType
|
|
UserType
|
|
UserRemoveType
|
|
ChannelType
|
|
ChannelRemoveType
|
|
) |