initial import
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user