10 lines
114 B
Go
10 lines
114 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func NewSubscription(n int) []byte {
|
|
return []byte(fmt.Sprintf("sub:%d", n))
|
|
}
|