diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | wiiload-lite.go (renamed from wiiload.go) | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ffb401 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# wiiload-lite + +This is a simple reimplemention of the Wiiload protocol for the Homebrew Channel on the Nintendo Wii. + +## Usage + +``` +wiiload-lite ip_address file_path +``` @@ -1,3 +1,3 @@ -module github.com/frostyfalls/wiiload +module github.com/frostyfalls/wiiload-lite go 1.23.6 diff --git a/wiiload.go b/wiiload-lite.go index a0e7e86..e14f64a 100644 --- a/wiiload.go +++ b/wiiload-lite.go @@ -17,7 +17,7 @@ const ( FileChunkSize = 1024 * 128 ) -const usage = "usage: wiiload ip_address file_path" +const usage = "usage: wiiload-lite ip_address file_path" func main() { if len(os.Args) != 3 { |