Skip to content

Commit e96da88

Browse files
authored
Gomod update (#70)
1 parent 019087e commit e96da88

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div align="center">
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/dbos-inc/dbos-transact-go.svg)](https://pkg.go.dev/github.com/dbos-inc/dbos-transact-go)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/dbos-inc/dbos-transact-go)](https://goreportcard.com/report/github.com/dbos-inc/dbos-transact-go)
5-
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/dbos-inc/dbos-transact-go?sort=semver)](https://github.com/dbos-inc/dbos-transact-go/releases)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/dbos-inc/dbos-transact-golang.svg)](https://pkg.go.dev/github.com/dbos-inc/dbos-transact-golang)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/dbos-inc/dbos-transact-golang)](https://goreportcard.com/report/github.com/dbos-inc/dbos-transact-golang)
5+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/dbos-inc/dbos-transact-golang?sort=semver)](https://github.com/dbos-inc/dbos-transact-golang/releases)
66
[![Join Discord](https://img.shields.io/badge/Discord-Join%20Chat-5865F2?logo=discord&logoColor=white)](https://discord.com/invite/jsmC6pXGgX)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
88

@@ -48,7 +48,7 @@ import (
4848
"fmt"
4949
"os"
5050

51-
"github.com/dbos-inc/dbos-transact-go/dbos"
51+
"github.com/dbos-inc/dbos-transact-golang/dbos"
5252
)
5353

5454
func workflow(dbosCtx dbos.DBOSContext, _ string) (string, error) {
@@ -136,7 +136,7 @@ import (
136136
"os"
137137
"time"
138138

139-
"github.com/dbos-inc/dbos-transact-go/dbos"
139+
"github.com/dbos-inc/dbos-transact-golang/dbos"
140140
)
141141

142142
func task(ctx dbos.DBOSContext, i int) (int, error) {
@@ -288,13 +288,13 @@ The input and output of workflows and steps are memoized in your Postgres databa
288288
Install the DBOS Transact package in your program:
289289

290290
```shell
291-
go get github.com/dbos-inc/dbos-transact-go
291+
go get github.com/dbos-inc/dbos-transact-golang
292292
```
293293

294294
You can store and export a Postgres connection string in the `DBOS_SYSTEM_DATABASE_URL` environment variable for DBOS to manage your workflows state. By default, DBOS will use `postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable`.
295295

296296

297297
## ⭐️ Like this project?
298298

299-
[Star it on GitHub](https://github.com/dbos-inc/dbos-transact-go)
300-
[![GitHub Stars](https://img.shields.io/github/stars/dbos-inc/dbos-transact-go?style=social)](https://github.com/dbos-inc/dbos-transact-go)
299+
[Star it on GitHub](https://github.com/dbos-inc/dbos-transact-golang)
300+
[![GitHub Stars](https://img.shields.io/github/stars/dbos-inc/dbos-transact-golang?style=social)](https://github.com/dbos-inc/dbos-transact-golang)

go.mod

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dbos-inc/dbos-transact-go
1+
module github.com/dbos-inc/dbos-transact-golang
22

33
go 1.23.0
44

@@ -28,8 +28,3 @@ require (
2828
golang.org/x/text v0.26.0 // indirect
2929
gopkg.in/yaml.v3 v3.0.1 // indirect
3030
)
31-
32-
retract (
33-
v1.0.0-alpha4
34-
v1.0.0-alpha.3
35-
)

0 commit comments

Comments
 (0)