NewStatService method in stats

This commit is contained in:
DanB
2017-07-21 16:24:40 +02:00
parent c6254f1ebb
commit 32aa5df0f3

View File

@@ -25,6 +25,11 @@ import (
"github.com/cgrates/cgrates/utils"
)
// NewStatService initializes a StatService
func NewStatService(dataDB DataDB) (ss *StatService, err error) {
ss = &StatService{dataDB: dataDB}
}
// StatService builds stats for events
type StatService struct {
sync.RWMutex