go vet fixes

This commit is contained in:
bonedaddy 2020-12-24 17:31:40 -08:00
commit 05b8e3065e
No known key found for this signature in database
GPG key ID: 5386234333106B29
6 changed files with 32 additions and 28 deletions

View file

@ -222,15 +222,15 @@ func NewEventsStream(s *session.Session) *EventsStream {
return mod
}
func (mod EventsStream) Name() string {
func (mod *EventsStream) Name() string {
return "events.stream"
}
func (mod EventsStream) Description() string {
func (mod *EventsStream) Description() string {
return "Print events as a continuous stream."
}
func (mod EventsStream) Author() string {
func (mod *EventsStream) Author() string {
return "Simone Margaritelli <evilsocket@gmail.com>"
}