Skip to content

Commit a3be049

Browse files
committed
all: move to golang.design
1 parent 6605237 commit a3be049

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Go SSA Playground
1+
# The Go SSA Playground
22

3-
https://changkun.de/gossa
3+
https://golang.design/gossa
44

5-
A tool for exploring go ssa intermediate representation.
5+
A tool for exploring Go's SSA intermediate representation.
66

77
![](./public/assets/screen.png)
88

@@ -28,7 +28,7 @@ Then access http://localhost:6789/gossa.
2828

2929
## Contribution
3030

31-
We would love to hear your feedback. Submit [an issue](https://github.com/changkun/ssaplayground/issues/new) to tell bugs or feature requests.
31+
We would love to hear your feedback. Submit [an issue](https://github.com/golang-design/ssaplayground/issues/new) to tell bugs or feature requests.
3232

3333
## License
3434

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ ADD . /app
44
# required for runtime/cgo
55
RUN apk add g++
66
RUN go get -u golang.org/x/tools/cmd/goimports && go mod tidy
7-
RUN go build -o ssaplayground.service -mod=vendor
7+
RUN go build -o ssaplayground.service -mod=mod
88
EXPOSE 6789
99
ENTRYPOINT [ "/app/ssaplayground.service", "-conf=/app/configs/docker.yaml"]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/changkun/ssaplayground
1+
module golang.design/x/ssaplayground
22

33
go 1.14
44

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
<p>The Go SSA Playground uses the latest stable release of Go. The current version is <a id="version" href="https://golang.org/dl/"></a>.</p>
5151

5252
<ul>
53-
<li>Website: <a href="https://changkun.de/gossa">changkun.de/gossa</a></li>
54-
<li>GitHub: <a href="https://github.com/changkun/ssaplayground">github.com/changkun/ssaplayground</a></li>
53+
<li>Website: <a href="https://golang.design/gossa">golang.design/gossa</a></li>
54+
<li>GitHub: <a href="https://github.com/golang-design/ssaplayground">github.com/golang-design/ssaplayground</a></li>
5555
</ul>
5656
<p>The author of the Go SSA Playground is <a href="https://changkun.de">Changkun Ou</a>.</p>
5757
</div>

src/boot/boot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"os/signal"
88
"time"
99

10-
"github.com/changkun/ssaplayground/src/config"
11-
"github.com/changkun/ssaplayground/src/route"
1210
"github.com/sirupsen/logrus"
11+
"golang.design/x/ssaplayground/src/config"
12+
"golang.design/x/ssaplayground/src/route"
1313
)
1414

1515
func init() {

src/route/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"runtime"
1414
"strings"
1515

16-
"github.com/changkun/ssaplayground/src/config"
1716
"github.com/gin-gonic/gin"
1817
"github.com/google/uuid"
18+
"golang.design/x/ssaplayground/src/config"
1919
)
2020

2121
// PingInput is a a reserved structure

src/route/router.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"net/http"
55
"net/http/pprof"
66

7-
"github.com/changkun/ssaplayground/src/config"
87
"github.com/gin-gonic/gin"
98
"github.com/sirupsen/logrus"
9+
"golang.design/x/ssaplayground/src/config"
1010
)
1111

1212
// Register routers

src/route/static.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"path"
77
"strings"
88

9-
"github.com/changkun/ssaplayground/src/config"
109
"github.com/gin-gonic/gin"
10+
"golang.design/x/ssaplayground/src/config"
1111
)
1212

1313
// serveFS is a middleware that allows static files serves

ssaplayground.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/changkun/ssaplayground/src/boot"
3+
import "golang.design/x/ssaplayground/src/boot"
44

55
func main() {
66
boot.Run()

0 commit comments

Comments
 (0)