mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-06-27 15:57:29 +00:00
* feat: refactoring to the new schema Signed-off-by: AlexsJones <alexsimonjones@gmail.com> * chore: updated readme with grpc commands Signed-off-by: AlexsJones <alexsimonjones@gmail.com> * chore: updated deps Signed-off-by: AlexsJones <alexsimonjones@gmail.com> --------- Signed-off-by: AlexsJones <alexsimonjones@gmail.com> Co-authored-by: Matthis <matthish29@gmail.com>
17 lines
422 B
Go
17 lines
422 B
Go
package config
|
|
|
|
import (
|
|
rpc "buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go/schema/v1/schemav1grpc"
|
|
schemav1 "buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go/schema/v1"
|
|
"context"
|
|
)
|
|
|
|
type Handler struct {
|
|
rpc.UnimplementedServerConfigServiceServer
|
|
}
|
|
|
|
func (h *Handler) Shutdown(ctx context.Context, request *schemav1.ShutdownRequest) (*schemav1.ShutdownResponse, error) {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|