zhangpeihao / gortmp

Implement RTMP protocol by golang
MIT License
525 stars 160 forks source link

Package or Project name is out of Go convention #6

Closed pixelbender closed 9 years ago

pixelbender commented 9 years ago

Hi. Thanks for your work. Can you rename package (or project) name as described in Go's convention: https://golang.org/doc/code.html#PackageNames

zhangpeihao commented 9 years ago

Thanks for your suggestion. I renamed the package name from rtmp to gortmp. If your project depend on it, you can append the package name 'rtmp' before the "github.com/zhangpeihao/gortmp":

import( rtmp "github.com/zhangpeihao/gortmp" )