mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-09 21:55:29 +02:00
Store parsed multi option values on the config object
This commit is contained in:
23
tools/cmd/ssh/config.go
Normal file
23
tools/cmd/ssh/config.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user