Files
hamlogger/cmd/hamloggerctl/hello.go
Олег Бородин ada2a49a64 initial import of sources
2024-06-18 10:15:22 +02:00

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
}