Files
next.orly.dev/pkg/utils/subscription.go

10 lines
114 B
Go

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