A unified SDK to interact with our Otter Space (Memgraph/Postgres)
Go to file
SoXX bfa074fd9b
All checks were successful
Gitea Build Check / Build (push) Successful in 10m54s
ci(postgres): fixed trigger
Signed-off-by: SoXX <soxx@fenpa.ws>
2024-06-24 12:02:39 +02:00
.gitea/workflows ci(postgres): fixed trigger 2024-06-24 12:02:39 +02:00
internal refactor(postgres): renamed function names and fixed tests and other issues 2024-06-23 22:35:46 +02:00
pkg fix(postgres): function mismatch with new types 2024-06-23 22:39:54 +02:00
test test(postgres): finished tests for user and fixed bugs 2024-06-20 22:45:03 +02:00
.gitignore fix: ignore main.go files 2024-05-15 11:17:27 +02:00
go.mod test(postgres): added first tests and already fixed bugs 2024-06-19 23:32:42 +02:00
go.sum test(postgres): added first tests and already fixed bugs 2024-06-19 23:32:42 +02:00
README.md docs(postgres): updated readme 2024-06-14 15:43:40 +02:00

OtterSpace SDK

The OtterSpace SDK is a Go package for interacting with the OtterSpace API. It provides methods for connecting to the API, adding and linking users, posts, and sources, and retrieving information about users and posts.

Installation

To install the OtterSpace SDK, you can use go get:

go get git.dragse.it/anthrove/otter-space-sdk

Usage

Here's a simple usage example:

package main

import (
	"context"
	"fmt"
	"git.dragse.it/anthrove/otter-space-sdk/pkg/models"
	"git.dragse.it/anthrove/otter-space-sdk/pkg/database"
)

func main() {
	var err error
	dbDebug := false
	ctx := context.Background()
	
	pgClient := database.NewPostgresqlConnection(dbDebug)
	err = pgClient.Connect(ctx, "your-endpoint", "your-username", "your-password", "anthrove", 5432, "disable", "Europe/Berlin")
	if err != nil {
		fmt.Println(err)
		return
	}

	graphClient := database.NewGraphConnection(dbDebug)
	err = graphClient.Connect(ctx, "your-endpoint", "your-username", "your-password", "NOT USED",0,"NOT USED","NOT USED")
	if err != nil {
		fmt.Println(err)
		return
	}
	// further usage of the client...
}

This example creates a new client, connects to the OtterSpace API, and then the client can be used to interact with the API.