mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-20 16:45:56 +08:00
11 lines
120 B
Go
11 lines
120 B
Go
package redis
|
|
|
|
import "fmt"
|
|
|
|
func init() {
|
|
fmt.Println("redis")
|
|
}
|
|
|
|
func Store(key, value string) error {
|
|
return nil
|
|
}
|