/* * Copyright 2022 Oleg Borodin */ package main // https://pkg.go.dev/github.com/google/go-containerregistry/pkg/name import ( "context" ) type ServiceHelloResult struct {} func (util *Util) ServiceHello(ctx context.Context) (*ServiceHelloResult, error) { var err error res := &ServiceHelloResult{} return res, err }