Files
cgrates/cmd/rater/storage_interface.go
Radu Ioan Fericean 5bf90c6fb4 rater docs
2012-01-28 19:02:23 +02:00

10 lines
128 B
Go

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