===== RoomStep =====
| 99 | // ===== RoomStep ===== |
| 100 | |
| 101 | type RoomStep struct { |
| 102 | id string |
| 103 | name string |
| 104 | description string |
| 105 | room *core.Room |
| 106 | config *StepConfig |
| 107 | } |
| 108 | |
| 109 | func NewRoomStep(name string, room *core.Room) *RoomStep { |
| 110 | return &RoomStep{ |
nothing calls this directly
no outgoing calls
no test coverage detected