mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-27 13:48:49 +08:00
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)
|
||
|
}
|