You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-07-11 01:20:21 +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]
|
||
|
}
|