mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
13 lines
228 B
Go
13 lines
228 B
Go
package server
|
|
|
|
import (
|
|
"github.com/crawlab-team/crawlab/grpc"
|
|
"sync"
|
|
)
|
|
|
|
type MetricsServerV2 struct {
|
|
grpc.UnimplementedMetricsServiceV2Server
|
|
mu *sync.Mutex
|
|
streams map[string]*grpc.MetricsServiceV2_ConnectServer
|
|
}
|