Skip to content
Snippets Groups Projects
service.go 239 B
Newer Older
package health

import "context"

type Service struct{}

func New() *Service {
	return &Service{}
}

func (s *Service) Liveness(_ context.Context) error {
func (s *Service) Readiness(_ context.Context) error {