Skip to content

Commit

Permalink
feat: add empty client server (#1)
Browse files Browse the repository at this point in the history
Signed-off-by: ZhangJian He <shoothzj@gmail.com>
  • Loading branch information
shoothzj committed Sep 4, 2024
1 parent 3ae5438 commit 6009623
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions opcua/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package opcua

type ClientConfig struct {
}

type Client struct {
}

func NewClient(config *ClientConfig) *Client {
client := &Client{}
return client
}
12 changes: 12 additions & 0 deletions opcua/server.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package opcua

type ServerConfig struct {
}

type Server struct {
}

func NewServer(config *ServerConfig) *Server {
server := &Server{}
return server
}

0 comments on commit 6009623

Please sign in to comment.