7 lines
121 B
Go
7 lines
121 B
Go
package database
|
|
|
|
type pingError struct{}
|
|
|
|
func (m *pingError) Error() string {
|
|
return "Connection to redis not work"
|
|
}
|