10 lines
129 B
Go
10 lines
129 B
Go
|
package coding
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func projectFullName(owner, name string) string {
|
||
|
return fmt.Sprintf("%s/%s", owner, name)
|
||
|
}
|