1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-07-06 22:15:44 +02:00
Files
woodpecker/remote/coding/util.go
2017-07-22 17:12:09 +08:00

10 lines
129 B
Go

package coding
import (
"fmt"
)
func projectFullName(owner, name string) string {
return fmt.Sprintf("%s/%s", owner, name)
}