16 lines
266 B
Go
16 lines
266 B
Go
package repository
|
|
|
|
import (
|
|
"epic-ent/internal/domain/vo"
|
|
)
|
|
|
|
type HealthRepository struct{}
|
|
|
|
func NewHealthRepository() *HealthRepository {
|
|
return &HealthRepository{}
|
|
}
|
|
|
|
func (r *HealthRepository) Check() vo.HealthStatus {
|
|
return vo.HealthStatus{Status: "ok"}
|
|
}
|