+2
-2
.golangci.yml
+2
-2
.golangci.yml
+2
-2
pkg/appview/handlers/storage.go
+2
-2
pkg/appview/handlers/storage.go
···
25
25
UserDID string `json:"userDid"`
26
26
UniqueBlobs int `json:"uniqueBlobs"`
27
27
TotalSize int64 `json:"totalSize"`
28
-
Limit *int64 `json:"limit,omitempty"` // nil = unlimited
29
-
Berth string `json:"berth,omitempty"` // e.g., "deckhand", "bosun", "owner"
28
+
Limit *int64 `json:"limit,omitempty"` // nil = unlimited
29
+
Berth string `json:"berth,omitempty"` // e.g., "deckhand", "bosun", "owner"
30
30
}
31
31
32
32
func (h *StorageHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
+1
-1
pkg/hold/pds/layer.go
+1
-1
pkg/hold/pds/layer.go
···
66
66
UserDID string `json:"userDid"`
67
67
UniqueBlobs int `json:"uniqueBlobs"`
68
68
TotalSize int64 `json:"totalSize"`
69
-
Limit *int64 `json:"limit,omitempty"` // nil = unlimited
69
+
Limit *int64 `json:"limit,omitempty"` // nil = unlimited
70
70
Berth string `json:"berth,omitempty"` // nautical rank for quota tier
71
71
}
72
72
+2
-2
pkg/hold/pds/xrpc.go
+2
-2
pkg/hold/pds/xrpc.go
···
47
47
s3Service s3.S3Service
48
48
storageDriver driver.StorageDriver
49
49
broadcaster *EventBroadcaster
50
-
httpClient HTTPClient // For testing - allows injecting mock HTTP client
51
-
quotaMgr *quota.Manager // Quota manager for tier-based limits
50
+
httpClient HTTPClient // For testing - allows injecting mock HTTP client
51
+
quotaMgr *quota.Manager // Quota manager for tier-based limits
52
52
}
53
53
54
54
// PartInfo represents a completed part in a multipart upload