Sync/Variables.go

12 lines
423 B
Go
Raw Permalink Normal View History

2017-02-19 15:20:43 +00:00
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?
pushOnly = true // Pushes only local changes to the remote i.e. backup mode
)