initial import

This commit is contained in:
2026-01-23 14:41:49 +02:00
commit 772657d9be
37 changed files with 11382 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package operator
import (
"net/http"
)
type FileExistsParams struct{}
type FileExistsResult struct {
Code int
}
func (oper *Operator) FileExists(param *FileExistsParams) (*FileExistsResult, error) {
var err error
res := &FileExistsResult{
Code: http.StatusOK,
}
return res, err
}