mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-04-02 22:05:46 +02:00
9 lines
142 B
Go
9 lines
142 B
Go
|
package split
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
func OnSlash(pair string) (string, string) {
|
||
|
parts := strings.Split(pair, "/")
|
||
|
return parts[0], parts[1]
|
||
|
}
|