gosocketio/vendor/github.com/googollee/go-socket.io/helpers.go

8 lines
119 B
Go
Raw Normal View History

2023-11-30 17:38:20 +08:00
package socketio
import "github.com/gofrs/uuid"
func newV4UUID() string {
return uuid.Must(uuid.NewV4()).String()
}