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