2023-11-22 22:21:11 +03:00
|
|
|
package plugin
|
2023-11-18 12:36:17 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Neur0toxine/sshpoke/pkg/convert"
|
|
|
|
"github.com/Neur0toxine/sshpoke/pkg/dto"
|
|
|
|
"github.com/Neur0toxine/sshpoke/pkg/plugin/pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Stream struct {
|
|
|
|
stream pb.PluginService_EventServer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stream) Send(event dto.Event) error {
|
|
|
|
return s.stream.Send(convert.AppEventToMessage(event))
|
|
|
|
}
|