Remove dead code

This commit is contained in:
Till Faelligen 2022-10-05 11:17:30 +02:00
parent c0299825c4
commit 3b6a157e14
No known key found for this signature in database
GPG key ID: 3DF82D8AB9211D4E

View file

@ -21,18 +21,6 @@ import (
// An OutputType is a type of roomserver output. // An OutputType is a type of roomserver output.
type OutputType string type OutputType string
// OutputTypes contains all possible output types from below
var OutputTypes = []OutputType{
OutputTypeNewRoomEvent,
OutputTypeOldRoomEvent,
OutputTypeNewInviteEvent,
OutputTypeRetireInviteEvent,
OutputTypeRedactedEvent,
OutputTypeNewPeek,
OutputTypeNewInboundPeek,
OutputTypeRetirePeek,
}
const ( const (
// OutputTypeNewRoomEvent indicates that the event is an OutputNewRoomEvent // OutputTypeNewRoomEvent indicates that the event is an OutputNewRoomEvent
OutputTypeNewRoomEvent OutputType = "new_room_event" OutputTypeNewRoomEvent OutputType = "new_room_event"