1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/util/syncqueues/fullid.go
2024-08-14 00:32:08 +02:00

7 lines
140 B
Go

package syncqueues
import "strings"
func fullId(peerId, objectId string) string {
return strings.Join([]string{peerId, objectId}, "-")
}