21 lines
327 B
Go
21 lines
327 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import "github.com/mainflux/mainflux/opcua"
|
|
|
|
type browseReq struct {
|
|
ServerURI string
|
|
Namespace string
|
|
Identifier string
|
|
}
|
|
|
|
func (req *browseReq) validate() error {
|
|
if req.ServerURI == "" {
|
|
return opcua.ErrMalformedEntity
|
|
}
|
|
|
|
return nil
|
|
}
|