1 package utils 2 3 import ( 4 "fmt" 5 ) 6 7 func NewSubscription(n int) []byte { 8 return []byte(fmt.Sprintf("sub:%d", n)) 9 } 10