Files
streamctl/pkg/streamd/config/git_repo_config.go
2024-10-22 20:55:24 +01:00

9 lines
350 B
Go

package config
type GitRepoConfig struct {
Enable *bool
URL string `yaml:"url,omitempty"`
PrivateKey string `yaml:"private_key,omitempty" secret:""`
LatestSyncCommit string `yaml:"latest_sync_commit,omitempty"` // TODO: deprecate this field, it's just a non-needed mechanism (better to check against git history).
}