plakken/internal/database/error.go
Ada 130a5ee345
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/pr/release Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pull_request_closed/release Pipeline was successful
ci/woodpecker/pull_request_closed/build Pipeline was successful
Add redis connection test before start
2024-02-21 14:34:19 +01:00

7 lines
121 B
Go

package database
type PingError struct{}
func (m *PingError) Error() string {
return "Connection to redis not work"
}