34 lines
597 B
Go
34 lines
597 B
Go
package main
|
|
|
|
import (
|
|
"code.gitea.io/sdk/gitea"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("hello")
|
|
|
|
client, err := gitea.NewClient("https://gitea.champs-libres.be")
|
|
|
|
if nil != err {
|
|
fmt.Println("could not create a client, {}", err)
|
|
}
|
|
|
|
repos, _, err := client.ListOrgRepos("Chill-project", gitea.ListOrgReposOptions{})
|
|
|
|
if nil != err {
|
|
fmt.Printf("could not list repos, %#v\n", err.Error())
|
|
}
|
|
|
|
for _, repo := range repos {
|
|
fmt.Printf("repository: %v\n", repo.FullName)
|
|
}
|
|
|
|
for _, e := range os.Environ() {
|
|
pair := strings.SplitN(e, "=", 2)
|
|
fmt.Println(pair[0])
|
|
}
|
|
}
|