diff --git a/utils/urls.go b/utils/urls.go index 7340282..09e0210 100644 --- a/utils/urls.go +++ b/utils/urls.go @@ -80,6 +80,7 @@ func GetScheme(input string) string { //HasScheme takes as input a string and //checks if it has a protocol ( like in a //URI/URL) +//Should be renamed to HasProtocol? func HasScheme(input string) bool { res := strings.Index(input, "://") return res >= 0