mirror of
https://github.com/bryanpedini/gitea-mirror.git
synced 2024-11-21 22:12:23 +00:00
added StringSliceToMap util, performed github migration only on request
This commit is contained in:
parent
600406e957
commit
2fd268f520
18
main.go
18
main.go
@ -1,6 +1,20 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/bryanpedini/gitea-mirror-gitea/utils"
|
||||
)
|
||||
|
||||
func main() {
|
||||
githubOrg, githubToken, giteaHost, giteaToken := "", "", "", ""
|
||||
migrateGithubToGitea(githubOrg, githubToken, giteaHost, giteaToken)
|
||||
commandLineArgumentsSlice := os.Args[1:]
|
||||
commandLineArguments := utils.StringSliceToMap(commandLineArgumentsSlice)
|
||||
|
||||
if _, ok := commandLineArguments["--github"]; ok {
|
||||
githubOrg, githubToken, giteaHost, giteaToken := "", "", "", ""
|
||||
migrateGithubToGitea(githubOrg, githubToken, giteaHost, giteaToken)
|
||||
} else {
|
||||
fmt.Println("Usage: " + os.Args[0] + " [--github]")
|
||||
}
|
||||
}
|
||||
|
13
utils/sliceToMap.go
Normal file
13
utils/sliceToMap.go
Normal file
@ -0,0 +1,13 @@
|
||||
package utils
|
||||
|
||||
// StringSliceToMap Converts a slice of strings into a map formed by
|
||||
// keys equals to the slice values, and empty strings as map values.
|
||||
func StringSliceToMap(slice []string) map[string]string {
|
||||
ret := make(map[string]string)
|
||||
|
||||
for i := 0; i < len(slice); i++ {
|
||||
ret[slice[i]] = ""
|
||||
}
|
||||
|
||||
return ret
|
||||
}
|
Loading…
Reference in New Issue
Block a user