mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
7 lines
140 B
Go
7 lines
140 B
Go
package syncqueues
|
|
|
|
import "strings"
|
|
|
|
func fullId(peerId, objectId string) string {
|
|
return strings.Join([]string{peerId, objectId}, "-")
|
|
}
|