diff --git a/global.go b/global.go index 9b93d2d..03e171d 100644 --- a/global.go +++ b/global.go @@ -72,3 +72,11 @@ func GetVanityPath(realPath *C.char) C.PascalString { func GetVersion() *C.char { return C.CString(global.LibmuttonVersion) } + +// GetSSHDirPath returns: +// sshDirPath +// +//export GetSSHDirPath +func GetSSHDirPath() C.PascalString { + return getPascalString(global.SSHDir) +}