Files
cgrates/timeslots/storage_interface.go
2012-01-30 19:04:37 +02:00

10 lines
133 B
Go

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