100-go-mistakes/2-code-project-organization/3-init-functions/redis/redis.go
2021-12-27 15:56:17 +01:00

11 lines
120 B
Go

package redis
import "fmt"
func init() {
fmt.Println("redis")
}
func Store(key, value string) error {
return nil
}