initial commit

This commit is contained in:
2026-01-18 21:40:51 +01:00
commit 197a01440c
14 changed files with 374 additions and 0 deletions

15
lib/config.go Normal file
View File

@@ -0,0 +1,15 @@
package lib
import "time"
type Config struct {
WikiBaseURL string
WikiToken string
RedmineBaseURL string
RedmineKey string
GiteaToken string
GiteaBaseURL string
GiteaRepos []string
Webhook string
Interval time.Duration
}