implemented init function

This commit is contained in:
Hazel Noack
2025-10-08 10:34:22 +02:00
parent 19ec6d1571
commit 018dbe1ef0
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
package plugin
import (
"fmt"
"regexp"
"strings"
@@ -46,7 +45,6 @@ func (m Musify) RegexSong() *regexp.Regexp {
func (m Musify) Search(query common.Query) ([]data.MusicObject, error) {
res := []data.MusicObject{}
fmt.Println("meow")
return res, nil
}