Files
kitty/tools/cmd/ssh/config.go
2023-02-26 08:01:01 +05:30

24 lines
354 B
Go

// 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
}