zitadel/internal/api/grpc/auth/information.go
Florian Forster fa9f581d56
chore(v2): move to new org (#3499)
* chore: move to new org

* logging

* fix: org rename caos -> zitadel

Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
2022-04-26 23:01:45 +00:00

12 lines
218 B
Go

package auth
import (
"context"
"github.com/zitadel/zitadel/pkg/grpc/auth"
)
func (s *Server) Healthz(context.Context, *auth.HealthzRequest) (*auth.HealthzResponse, error) {
return &auth.HealthzResponse{}, nil
}