11 lines
327 B
Go
11 lines
327 B
Go
|
package main
|
||
|
|
||
|
var (
|
||
|
username = `` // The SSH user's name
|
||
|
password = `` // The user's password
|
||
|
serverAddrString = `` // The SSH server address
|
||
|
localDir = `` // The local directory
|
||
|
remoteDir = `` // The remote directory
|
||
|
supervised = true // Should the tool work supervised?
|
||
|
)
|