8 lines
107 B
Go
8 lines
107 B
Go
|
package mocks
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func key(owner, id string) string {
|
||
|
return fmt.Sprintf("%s-%s", owner, id)
|
||
|
}
|