working commit

This commit is contained in:
2026-02-03 11:55:07 +02:00
parent fe0a3afcdd
commit 24b9acd678
10 changed files with 657 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package operator
import (
"context"
"net/http"
)
type GetVersionParams struct{}
type GetVersionResult struct{}
func (oper *Operator) GetVersion(ctx context.Context, params *GetVersionParams) (*GetVersionResult, int, error) {
var err error
code := http.StatusOK
res := &GetVersionResult{}
oper.logg.Debugf("Call GetVersion")
return res, code, err
}