1 parent 11ebe97 commit ef85713Copy full SHA for ef85713
3 files changed
sdk/go/client/client.go
@@ -0,0 +1,11 @@
1
+package client
2
+
3
+type Client struct {
4
+ config ClientConfig
5
+}
6
7
+func New(config ClientConfig) *Client {
8
+ return &Client{
9
+ config: config,
10
+ }
11
sdk/go/client/config.go
@@ -0,0 +1,9 @@
+type ClientConfig struct {
+ ManagerIP string
+ Cache RedisConfig
+type RedisConfig struct {
sdk/go/go.mod
@@ -0,0 +1,3 @@
+module github.com/hertzcodes/transienta/go-sdk
+go 1.25.1
0 commit comments