Exemplo n.º 1
0
Arquivo: funcs.go Projeto: olragon/dna
func isSongFormat(str dna.String) dna.Bool {
	if str.EndsWith("mp3") == true || str.EndsWith("m4a") == true {
		return true
	} else {
		return false
	}
}
Exemplo n.º 2
0
Arquivo: funcs.go Projeto: olragon/dna
func isVideoFormat(str dna.String) dna.Bool {
	if str.EndsWith("mp4") == true || str.EndsWith("mpg") == true || str.EndsWith("flv") == true {
		return true
	} else {
		return false
	}
}