# libzsync-go **Repository Path**: rustlab/libzsync-go ## Basic Information - **Project Name**: libzsync-go - **Description**: No description available - **Primary Language**: Go - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-14 - **Last Updated**: 2024-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # libzsync-go libzsync implementation in Golang See http://zsync.moria.org.uk/ ## Usage ```go import github.com/AppImageCrafters/libzsync-go ``` ```go // Configure sync, _ := zsync.NewZSync("https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage.zsync") sync.RemoteFileUrl = "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" // Execute output, _ := os.Create("/tmp/appimagetool-new-x86_64.AppImage") err = sync.Sync("/tmp/appimagetool-x86_64.AppImage", output) ```