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