22 lines
352 B
Go
22 lines
352 B
Go
/*
|
|
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
|
|
*/
|
|
|
|
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
|
|
}
|
|
|