stream/mts/encoder.go: adding copyright meta first thing

This commit is contained in:
saxon 2019-02-05 13:14:42 +10:30
parent 3364b4ea6f
commit 6425403fcb
1 changed files with 9 additions and 0 deletions

View File

@ -88,9 +88,18 @@ const (
psiSndCnt = 7
)
const (
copyright = "copyright"
license = "ausocean.org/license/content2019"
)
// global Meta
var Meta = meta.New()
func init() {
Meta.Add(copyright, license)
}
var (
patTable = standardPat.Bytes()
pmtTable = standardPmt.Bytes()