Skip to content

Commit b6855cd

Browse files
authored
Merge pull request #39 from njhale/enhance/credential-overrides
enhance: support credential override
2 parents 748ab66 + 67da30e commit b6855cd

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

opts.go

+10-9
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ func (g GlobalOptions) toEnv() []string {
2828
type Options struct {
2929
GlobalOptions `json:",inline"`
3030

31-
Confirm bool `json:"confirm"`
32-
Input string `json:"input"`
33-
DisableCache bool `json:"disableCache"`
34-
CacheDir string `json:"cacheDir"`
35-
SubTool string `json:"subTool"`
36-
Workspace string `json:"workspace"`
37-
ChatState string `json:"chatState"`
38-
IncludeEvents bool `json:"includeEvents"`
39-
Prompt bool `json:"prompt"`
31+
Confirm bool `json:"confirm"`
32+
Input string `json:"input"`
33+
DisableCache bool `json:"disableCache"`
34+
CacheDir string `json:"cacheDir"`
35+
SubTool string `json:"subTool"`
36+
Workspace string `json:"workspace"`
37+
ChatState string `json:"chatState"`
38+
IncludeEvents bool `json:"includeEvents"`
39+
Prompt bool `json:"prompt"`
40+
CredentialOverride string `json:"credentialOverride"`
4041
}

0 commit comments

Comments
 (0)