mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-22 07:38:45 +05:00
move trends to dedicated package
reivse/add comments and order of funcs/definitions
This commit is contained in:
committed by
Dan Christian Bogos
parent
24d886c8e0
commit
47fb25b4ef
@@ -70,11 +70,11 @@ type DataDB interface {
|
||||
SetRankingDrv(ctx *context.Context, rn *Ranking) (err error)
|
||||
GetRankingDrv(ctx *context.Context, tenant string, id string) (sq *Ranking, err error)
|
||||
RemoveRankingDrv(ctx *context.Context, tenant string, id string) (err error)
|
||||
SetTrendProfileDrv(ctx *context.Context, sq *TrendProfile) (err error)
|
||||
GetTrendProfileDrv(ctx *context.Context, tenant string, id string) (sq *TrendProfile, err error)
|
||||
SetTrendProfileDrv(ctx *context.Context, sq *utils.TrendProfile) (err error)
|
||||
GetTrendProfileDrv(ctx *context.Context, tenant string, id string) (sq *utils.TrendProfile, err error)
|
||||
RemTrendProfileDrv(ctx *context.Context, tenant string, id string) (err error)
|
||||
GetTrendDrv(ctx *context.Context, tenant string, id string) (*Trend, error)
|
||||
SetTrendDrv(ctx *context.Context, tr *Trend) error
|
||||
GetTrendDrv(ctx *context.Context, tenant string, id string) (*utils.Trend, error)
|
||||
SetTrendDrv(ctx *context.Context, tr *utils.Trend) error
|
||||
RemoveTrendDrv(ctx *context.Context, tenant string, id string) error
|
||||
GetFilterDrv(ctx *context.Context, tnt string, id string) (*Filter, error)
|
||||
SetFilterDrv(ctx *context.Context, f *Filter) error
|
||||
|
||||
Reference in New Issue
Block a user