Merge branch 'main' into lobsters-widget

This commit is contained in:
Svilen Markov 2024-06-02 18:19:06 +01:00 committed by GitHub
commit e3c17e0347
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
42 changed files with 1026 additions and 168 deletions

View file

@ -45,6 +45,8 @@ func New(widgetType string) (Widget, error) {
return &TwitchChannels{}, nil
case "lobsters":
return &Lobsters{}, nil
case "repository":
return &Repository{}, nil
default:
return nil, fmt.Errorf("unknown widget type: %s", widgetType)
}