stub out pastebin

This commit is contained in:
Barak Michener 2020-09-24 21:55:26 -07:00
parent b6b58fe2b3
commit a5bef3cd30
8 changed files with 366 additions and 12 deletions

View file

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