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{}
2024-02-21 14:22:40 +01:00
func (m *pingError) Error() string {
2024-02-21 14:22:40 +01:00
return "Connection to redis not work"
}