mirror of
https://github.com/InazumaV/Ratte.git
synced 2026-02-03 20:20:14 +00:00
8 lines
148 B
Go
8 lines
148 B
Go
package conf
|
|
|
|
import "strings"
|
|
|
|
func IsHttpUrl(url string) bool {
|
|
return strings.HasPrefix(url, "http://") || strings.HasPrefix(url, "https://")
|
|
}
|