mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-26 13:48:53 +08:00

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> Co-authored-by: Nikola Marčetić <n.marcetic86@gmail.com>
11 lines
250 B
Go
11 lines
250 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package opcua
|
|
|
|
// Browser represents the OPC-UA Server Nodes browser.
|
|
type Browser interface {
|
|
// Browse availlable Nodes for a given URI.
|
|
Browse(string, string) ([]string, error)
|
|
}
|