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:
@@ -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 (
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user