package ussher import "golang.org/x/crypto/ssh" type SSHApp interface { HandleExec(appstring string, conn *ssh.ServerConn, channel ssh.Channel) error Close() error }