fix(analytics): import canonical github.com/zap-proto/zip (not hanzoai/zip)

Aligns clients/analytics with serve.go + every other in-tree clients/* subsystem,
which import github.com/zap-proto/zip. The original commit imported the OLD
github.com/hanzoai/zip, making analytics.Mount assert *hanzoai/zip.App while serve
passes *zap-proto/zip.App — a boot-time mount type mismatch. Removes the last in-tree
hanzoai/zip importer so once the migration lane re-releases the external subsystem
modules on zap-proto/zip, main boots with ONE zip.App type. (The DEPLOYED v1.786.17
is built off v1.786.13, which is all-hanzoai/zip, and is unaffected.)
This commit is contained in:
2026-07-02 04:33:45 -07:00
parent bb1fe87244
commit 1371203a2b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -61,8 +61,8 @@ import (
aiobject "github.com/hanzoai/ai/object"
"github.com/hanzoai/cloud"
"github.com/hanzoai/zip"
luxlog "github.com/luxfi/log"
"github.com/zap-proto/zip"
)
const (
+1 -1
View File
@@ -15,8 +15,8 @@ import (
"testing"
"github.com/hanzoai/cloud"
"github.com/hanzoai/zip"
luxlog "github.com/luxfi/log"
"github.com/zap-proto/zip"
)
func mountApp(t *testing.T) *zip.App {