mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
13 lines
169 B
Go
13 lines
169 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/simonz05/godis"
|
|
)
|
|
|
|
func main() {
|
|
r := godis.New("", 10, "")
|
|
r.Set("test", 12224)
|
|
fmt.Println("Done!")
|
|
}
|