Files
cgrates/timespans/storage_interface.go
2012-02-02 20:31:23 +02:00

10 lines
133 B
Go

package timespans
/*
Interface for storage providers.
*/
type StorageGetter interface {
Close()
Get(key string) (string, error)
}