mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-01 13:18:41 +00:00
9 lines
129 B
Go
9 lines
129 B
Go
package coding
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func projectFullName(owner, name string) string {
|
|
return fmt.Sprintf("%s/%s", owner, name)
|
|
}
|