2024-02-21 14:22:40 +01:00
|
|
|
package database
|
|
|
|
|
2024-02-25 00:29:39 +01:00
|
|
|
type pingError struct{}
|
2024-02-21 14:22:40 +01:00
|
|
|
|
2024-02-25 00:29:39 +01:00
|
|
|
func (m *pingError) Error() string {
|
2024-02-21 14:22:40 +01:00
|
|
|
return "Connection to redis not work"
|
|
|
|
}
|