File tree Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
- # Go SSA Playground
1
+ # The Go SSA Playground
2
2
3
- https://changkun.de /gossa
3
+ https://golang.design /gossa
4
4
5
- A tool for exploring go ssa intermediate representation.
5
+ A tool for exploring Go's SSA intermediate representation.
6
6
7
7
![ ] ( ./public/assets/screen.png )
8
8
@@ -28,7 +28,7 @@ Then access http://localhost:6789/gossa.
28
28
29
29
## Contribution
30
30
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.
32
32
33
33
## License
34
34
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ ADD . /app
4
4
# required for runtime/cgo
5
5
RUN apk add g++
6
6
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
8
8
EXPOSE 6789
9
9
ENTRYPOINT [ "/app/ssaplayground.service" , "-conf=/app/configs/docker.yaml" ]
Original file line number Diff line number Diff line change 1
- module github.com/changkun /ssaplayground
1
+ module golang.design/x /ssaplayground
2
2
3
3
go 1.14
4
4
Original file line number Diff line number Diff line change 50
50
< 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 >
51
51
52
52
< 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 >
55
55
</ ul >
56
56
< p > The author of the Go SSA Playground is < a href ="https://changkun.de "> Changkun Ou</ a > .</ p >
57
57
</ div >
Original file line number Diff line number Diff line change 7
7
"os/signal"
8
8
"time"
9
9
10
- "github.com/changkun/ssaplayground/src/config"
11
- "github.com/changkun/ssaplayground/src/route"
12
10
"github.com/sirupsen/logrus"
11
+ "golang.design/x/ssaplayground/src/config"
12
+ "golang.design/x/ssaplayground/src/route"
13
13
)
14
14
15
15
func init () {
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ import (
13
13
"runtime"
14
14
"strings"
15
15
16
- "github.com/changkun/ssaplayground/src/config"
17
16
"github.com/gin-gonic/gin"
18
17
"github.com/google/uuid"
18
+ "golang.design/x/ssaplayground/src/config"
19
19
)
20
20
21
21
// PingInput is a a reserved structure
Original file line number Diff line number Diff line change 4
4
"net/http"
5
5
"net/http/pprof"
6
6
7
- "github.com/changkun/ssaplayground/src/config"
8
7
"github.com/gin-gonic/gin"
9
8
"github.com/sirupsen/logrus"
9
+ "golang.design/x/ssaplayground/src/config"
10
10
)
11
11
12
12
// Register routers
Original file line number Diff line number Diff line change 6
6
"path"
7
7
"strings"
8
8
9
- "github.com/changkun/ssaplayground/src/config"
10
9
"github.com/gin-gonic/gin"
10
+ "golang.design/x/ssaplayground/src/config"
11
11
)
12
12
13
13
// serveFS is a middleware that allows static files serves
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- import "github.com/changkun /ssaplayground/src/boot"
3
+ import "golang.design/x /ssaplayground/src/boot"
4
4
5
5
func main () {
6
6
boot .Run ()
You can’t perform that action at this time.
0 commit comments