mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
10 lines
128 B
Go
10 lines
128 B
Go
package main
|
|
|
|
/*
|
|
Interface for storage providers.
|
|
*/
|
|
type StorageGetter interface {
|
|
Close()
|
|
Get(key string) (string, error)
|
|
}
|