Store parsed multi option values on the config object

This commit is contained in:
Kovid Goyal
2023-02-17 20:31:47 +05:30
parent 1470b11024
commit 32aa580984
3 changed files with 30 additions and 8 deletions

23
tools/cmd/ssh/config.go Normal file
View File

@@ -0,0 +1,23 @@
// License: GPLv3 Copyright: 2023, Kovid Goyal, <kovid at kovidgoyal.net>
package ssh
import (
"fmt"
)
var _ = fmt.Print
type EnvInstruction struct {
}
type CopyInstruction struct {
}
func NewEnvInstruction(spec string) (ei *EnvInstruction, err error) {
return
}
func NewCopyInstruction(spec string) (ci *CopyInstruction, err error) {
return
}