plakken/internal/database/error.go

8 lines
121 B
Go
Raw Normal View History

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