github.com/puellanivis/breton@v0.2.16/lib/net/hls/m3u8/define.go (about)

     1  package m3u8
     2  
     3  // Define implements the DEFINE m3u8 directive.
     4  type Define struct {
     5  	Name  string `m3u8:"NAME,optional"`
     6  	Value string `m3u8:"VALUE,optional"`
     7  
     8  	Import string `m3u8:"IMPORT,optional"`
     9  }