shithub: furgit

Download patch

ref: 4888b2794025ee47813a9b59973e08efc40226de
parent: b4942b77dfc53ec0891b807296ba88d25b416ee9
author: Runxi Yu <me@runxiyu.org>
date: Fri Jan 30 05:17:51 EST 2026

blob: Add field documentation

--- a/obj_blob.go
+++ b/obj_blob.go
@@ -2,6 +2,7 @@
 
 // Blob represents a Git blob object.
 type Blob struct {
+	// Data represents the payload content of the blob.
 	Data []byte
 }
 
--