aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrosty <passedgoandgot200@disroot.org>2025-02-20 23:39:07 -0500
committerfrosty <passedgoandgot200@disroot.org>2025-02-20 23:44:35 -0500
commite8c6437d862c901460d1b798f1ea9df9fb53ecd1 (patch)
treeb8de3e4bb76ee49670d8b7f095605ee09abedee8
parente90f24e024b4b3a3f278896d3750c3ff5e0fe8dc (diff)
downloadwiiload-lite-e8c6437d862c901460d1b798f1ea9df9fb53ecd1.tar.gz
wiiload-lite-e8c6437d862c901460d1b798f1ea9df9fb53ecd1.zip
rename project to wiiload-lite
-rw-r--r--README.md9
-rw-r--r--go.mod2
-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
+```
diff --git a/go.mod b/go.mod
index 2ae0a5f..30dbd48 100644
--- a/go.mod
+++ b/go.mod
@@ -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 {