woodpecker/remote/coding/util.go

10 lines
129 B
Go
Raw Normal View History

2017-07-22 09:12:09 +00:00
package coding
import (
"fmt"
)
func projectFullName(owner, name string) string {
return fmt.Sprintf("%s/%s", owner, name)
}