Browse Source

Add default command route handler

pull/155/head
Richard Lewis 7 years ago
parent
commit
445c277bd3
  1. 6
      src/github.com/matrix-org/go-neb/services/google/google.go

6
src/github.com/matrix-org/go-neb/services/google/google.go

@ -82,6 +82,12 @@ func (s *Service) Commands(client *gomatrix.Client) []types.Command {
return usageMessage(), nil
},
},
types.Command{
Path: []string{"google"},
Command: func(roomID, userID string, args []string) (interface{}, error) {
return usageMessage(), nil
},
},
}
}

Loading…
Cancel
Save