Add Repository Overview widget

This commit is contained in:
Svilen Markov
2024-05-10 11:05:42 +01:00
parent 7dd1cca65d
commit c5e3eed64b
8 changed files with 270 additions and 1 deletions

View File

@@ -43,6 +43,8 @@ func New(widgetType string) (Widget, error) {
return &TwitchGames{}, nil
case "twitch-channels":
return &TwitchChannels{}, nil
case "repository-overview":
return &RepositoryOverview{}, nil
default:
return nil, fmt.Errorf("unknown widget type: %s", widgetType)
}