in cmd/list/main.go [33:43]
func diffExtensions(registredExtensions, extensions []string) []string {
result := []string{}
for _, ext := range extensions {
if !contains(registredExtensions, "."+ext) {
result = append(result, ext)
}
}
return result
}