10 lines
207 B
Go
10 lines
207 B
Go
|
package config
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Config struct {
|
||
|
GitImage string `json:"gitImage,omitempty"`
|
||
|
Timeout time.Duration `json:"timeout,omitempty"`
|
||
|
AuthSecret string `json:"authSecret"`
|
||
|
}
|