v0.6.0: drop Metrics service from the server SDK
CI / build (push) Successful in 50s

This commit is contained in:
edmand46
2026-08-27 09:53:44 +03:00
parent ef5bbe2df2
commit 2619291b20
3 changed files with 0 additions and 23 deletions
-2
View File
@@ -21,7 +21,6 @@ type Client struct {
Inventory *InventoryService
Quests *QuestsService
Storage *StorageService
Metrics *MetricsService
transport *transport
}
@@ -54,7 +53,6 @@ func New(config Config) (*Client, error) {
Inventory: &InventoryService{transport: transport},
Quests: &QuestsService{transport: transport},
Storage: &StorageService{transport: transport},
Metrics: &MetricsService{transport: transport},
transport: transport,
}, nil