You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
212 B
Go

package main
import "embed"
const videoPlaylistParam = "videoplaylist"
//go:embed hlsjs/*
var hlsjsFiles embed.FS
func (p *post) hasVideoPlaylist() bool {
return p.firstParameter(videoPlaylistParam) != ""
}