Sync/Variables.go
2017-02-19 16:20:43 +01:00

12 lines
423 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?
pushOnly = true // Pushes only local changes to the remote i.e. backup mode
)