Merge remote-tracking branch 'origin' into change-detection

This commit is contained in:
Shashank S
2024-05-13 03:32:52 +02:00
40 changed files with 882 additions and 170 deletions

View File

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