g2g/github-to-gogs.go

10 lines
174 B
Go
Raw Normal View History

2019-01-05 23:26:55 +01:00
package main
func main() {
2019-07-07 12:47:28 +02:00
var config Config
GetConfig(&config)
2019-06-09 14:44:07 +02:00
GetGogsUserUID(&config)
2019-07-07 12:47:28 +02:00
repolist := GetReposFromGitHub(&config)
MigrateReposToGogs(&config, repolist)
2019-01-05 23:26:55 +01:00
}