working commit
This commit is contained in:
@@ -3,6 +3,7 @@ package operator
|
||||
import (
|
||||
"io"
|
||||
"net/http"
|
||||
"path"
|
||||
)
|
||||
|
||||
// File exists
|
||||
@@ -15,6 +16,10 @@ type FileExistsResult struct{}
|
||||
|
||||
func (oper *Operator) FileExists(param *FileExistsParams) (int, *FileExistsResult, error) {
|
||||
var err error
|
||||
|
||||
filename := path.Base(param.Filepath)
|
||||
dirname := path.Dir(filepath)
|
||||
|
||||
res := &FileExistsResult{}
|
||||
code := http.StatusOK
|
||||
return code, res, err
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
package operator
|
||||
|
||||
import (
|
||||
"mstore/app/database"
|
||||
"mstore/app/maindb"
|
||||
)
|
||||
|
||||
type OperatorParams struct {
|
||||
Database *database.Database
|
||||
MainDB *database.Database
|
||||
}
|
||||
|
||||
type Operator struct {
|
||||
db *database.Database
|
||||
maindb *main.Database
|
||||
}
|
||||
|
||||
func NewOperator(params *OperatorParams) (*Operator, error) {
|
||||
var err error
|
||||
oper := &Operator{
|
||||
db: params.Database,
|
||||
db: params.MainDB,
|
||||
}
|
||||
return oper, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user