├── .github └── workflows │ ├── release.yaml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── cli ├── args.go └── cli.go ├── go.mod ├── go.sum ├── transfer ├── download.go └── write.go └── wedl.go /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build file for the wedl project 2 | *.exe 3 | wedl 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/README.md -------------------------------------------------------------------------------- /cli/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/cli/args.go -------------------------------------------------------------------------------- /cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/cli/cli.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/go.sum -------------------------------------------------------------------------------- /transfer/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/transfer/download.go -------------------------------------------------------------------------------- /transfer/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/transfer/write.go -------------------------------------------------------------------------------- /wedl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnojus/wedl/HEAD/wedl.go --------------------------------------------------------------------------------