mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-25 17:18:44 +05:00
11 lines
222 B
Go
11 lines
222 B
Go
package timespans
|
|
|
|
/*
|
|
Interface for storage providers.
|
|
*/
|
|
type StorageGetter interface {
|
|
Close()
|
|
GetActivationPeriods(key string) ([]*ActivationPeriod, error)
|
|
SetActivationPeriods(key string, aps []*ActivationPeriod)
|
|
}
|