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"
|
|
}
|