Skip to content

Commit b8c66e8

Browse files
committed
Update
1 parent f1f15be commit b8c66e8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+276
-277
lines changed

.github/workflows/multi_ver_unittest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
go-version: ["1.18", "1.20"]
14+
go-version: ["1.18", "1.22"]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup Go ${{ matrix.go-version }}

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "aws"]
22
path = aws
3-
url = [email protected]:go-spectest/aws.git
3+
url = [email protected]:nao1215/aws.git

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GOOS = ""
1111
GOARCH = ""
1212
GO_PKGROOT = ./...
1313
GO_PACKAGES = $(shell $(GO_LIST) $(GO_PKGROOT))
14-
GO_LDFLAGS = -ldflags "-X github.com/go-spectest/spectest/version.TagVersion=${VERSION} -X github.com/go-spectest/spectest/version.Revision=$(GIT_REVISION)"
14+
GO_LDFLAGS = -ldflags "-X github.com/nao1215/spectest/version.TagVersion=${VERSION} -X github.com/nao1215/spectest/version.Revision=$(GIT_REVISION)"
1515

1616
build: ## Build binary
1717
env GO111MODULE=on GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO_BUILD) $(GO_LDFLAGS) -o $(APP) cmd/spectest/main.go
@@ -29,4 +29,4 @@ clean: ## Clean up
2929
.DEFAULT_GOAL := help
3030
help: ## Show this help
3131
@grep -E '^[0-9a-zA-Z_-]+[[:blank:]]*:.*?## .*$$' $(MAKEFILE_LIST) | sort \
32-
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[1;32m%-15s\033[0m %s\n", $$1, $$2}'
32+
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[1;32m%-15s\033[0m %s\n", $$1, $$2}'

README.md

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[![Go Reference](https://pkg.go.dev/badge/github.com/go-spectest/spectest.svg)](https://pkg.go.dev/github.com/go-spectest/spectest)
2-
[![LinuxUnitTest](https://github.com/go-spectest/spectest/actions/workflows/linux_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/linux_test.yml)
3-
[![MacUnitTest](https://github.com/go-spectest/spectest/actions/workflows/mac_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/mac_test.yml)
4-
[![WindowsUnitTest](https://github.com/go-spectest/spectest/actions/workflows/windows_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/windows_test.yml)
5-
[![UnitTestExampleCodes](https://github.com/go-spectest/spectest/actions/workflows/test-examples.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/test-examples.yml)
6-
[![reviewdog](https://github.com/go-spectest/spectest/actions/workflows/reviewdog.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/reviewdog.yml)
7-
[![Gosec](https://github.com/go-spectest/spectest/actions/workflows/gosec.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/gosec.yml)
8-
![Coverage](https://github.com/go-spectest/octocovs-central-repo/blob/main//badges/go-spectest/spectest/coverage.svg?raw=true)
1+
[![Go Reference](https://pkg.go.dev/badge/github.com/nao1215/spectest.svg)](https://pkg.go.dev/github.com/nao1215/spectest)
2+
[![LinuxUnitTest](https://github.com/nao1215/spectest/actions/workflows/linux_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/linux_test.yml)
3+
[![MacUnitTest](https://github.com/nao1215/spectest/actions/workflows/mac_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/mac_test.yml)
4+
[![WindowsUnitTest](https://github.com/nao1215/spectest/actions/workflows/windows_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/windows_test.yml)
5+
[![UnitTestExampleCodes](https://github.com/nao1215/spectest/actions/workflows/test-examples.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/test-examples.yml)
6+
[![reviewdog](https://github.com/nao1215/spectest/actions/workflows/reviewdog.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/reviewdog.yml)
7+
[![Gosec](https://github.com/nao1215/spectest/actions/workflows/gosec.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/gosec.yml)
8+
![Coverage](https://github.com/nao1215/octocovs-central-repo/blob/main//badges/nao1215/spectest/coverage.svg?raw=true)
99

1010
## What is spectest?
1111

@@ -23,7 +23,7 @@ The spectest has its own unique use cases, [Use Cases of spectest](./doc/spectes
2323
## Installation
2424

2525
```bash
26-
go get -u github.com/go-spectest/spectest
26+
go get -u github.com/nao1215/spectest
2727
```
2828

2929
## Demo
@@ -36,28 +36,28 @@ go get -u github.com/go-spectest/spectest
3636

3737
| Example | Comment |
3838
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
39-
| [gin](https://github.com/go-spectest/spectest/tree/main/examples/gin) | popular martini-like web framework |
40-
| [graphql](https://github.com/go-spectest/spectest/tree/main/examples/graphql) | using gqlgen.com to generate a graphql server |
41-
| [gorilla](https://github.com/go-spectest/spectest/tree/main/examples/gorilla) | the gorilla web toolkit |
42-
| [iris (broken)](https://github.com/go-spectest/spectest/tree/main/examples/iris) | iris web framework |
43-
| [echo](https://github.com/go-spectest/spectest/tree/main/examples/echo) | High performance, extensible, minimalist Go web framework |
44-
| [fiber](https://github.com/go-spectest/spectest/tree/main/examples/fiber) | Express inspired web framework written in Go |
45-
| [httprouter](https://github.com/go-spectest/spectest/tree/main/examples/httprouter) | High performance HTTP request router that scales well |
46-
| [mocks](https://github.com/go-spectest/spectest/tree/main/examples/mocks) | example mocking out external http calls |
47-
| [sequence diagrams](https://github.com/go-spectest/spectest/tree/main/examples/sequence-diagrams) | generate sequence diagrams from tests |
48-
| [Ginkgo](https://github.com/go-spectest/spectest/tree/main/examples/ginkgo) | Ginkgo BDD test framework|
49-
| [plantuml](https://github.com/go-spectest/spectest/tree/main/examples/plantuml) | wxample generating plantuml|
39+
| [gin](https://github.com/nao1215/spectest/tree/main/examples/gin) | popular martini-like web framework |
40+
| [graphql](https://github.com/nao1215/spectest/tree/main/examples/graphql) | using gqlgen.com to generate a graphql server |
41+
| [gorilla](https://github.com/nao1215/spectest/tree/main/examples/gorilla) | the gorilla web toolkit |
42+
| [iris (broken)](https://github.com/nao1215/spectest/tree/main/examples/iris) | iris web framework |
43+
| [echo](https://github.com/nao1215/spectest/tree/main/examples/echo) | High performance, extensible, minimalist Go web framework |
44+
| [fiber](https://github.com/nao1215/spectest/tree/main/examples/fiber) | Express inspired web framework written in Go |
45+
| [httprouter](https://github.com/nao1215/spectest/tree/main/examples/httprouter) | High performance HTTP request router that scales well |
46+
| [mocks](https://github.com/nao1215/spectest/tree/main/examples/mocks) | example mocking out external http calls |
47+
| [sequence diagrams](https://github.com/nao1215/spectest/tree/main/examples/sequence-diagrams) | generate sequence diagrams from tests |
48+
| [Ginkgo](https://github.com/nao1215/spectest/tree/main/examples/ginkgo) | Ginkgo BDD test framework|
49+
| [plantuml](https://github.com/nao1215/spectest/tree/main/examples/plantuml) | wxample generating plantuml|
5050

5151
### Companion libraries (Side projects)
5252
In the original apitest repository, side projects were managed in separate repositories. However, in spectest, these side projects are managed within the same repository. However, the difflib, which operates independently from spectest, and the malfunctioning aws package, are managed in separate repositories.
5353

5454
| Library | Comment |
5555
| ----------------------------------------------------------------------- | -----------------------------------------------|
56-
| [JSON Path](https://github.com/go-spectest/spectest/tree/main/jsonpath) | JSON Path assertion addons |
57-
| [JOSN Schema](https://github.com/go-spectest/spectest/tree/main/jsonschema) | JSON Schema assertion addons |
58-
| [CSS Selectors](https://github.com/go-spectest/spectest/tree/main/css-selector) | CSS selector assertion addons |
59-
| [PlantUML](https://github.com/go-spectest/spectest/tree/main/plantuml) | Export sequence diagrams as plantUML |
60-
| [DynamoDB (broken)](https://github.com/go-spectest/tree/main/aws) | Add DynamoDB interactions to sequence diagrams |
56+
| [JSON Path](https://github.com/nao1215/spectest/tree/main/jsonpath) | JSON Path assertion addons |
57+
| [JOSN Schema](https://github.com/nao1215/spectest/tree/main/jsonschema) | JSON Schema assertion addons |
58+
| [CSS Selectors](https://github.com/nao1215/spectest/tree/main/css-selector) | CSS selector assertion addons |
59+
| [PlantUML](https://github.com/nao1215/spectest/tree/main/plantuml) | Export sequence diagrams as plantUML |
60+
| [DynamoDB (broken)](https://github.com/nao1215/tree/main/aws) | Add DynamoDB interactions to sequence diagrams |
6161

6262
### Credits
6363

@@ -86,7 +86,7 @@ func TestApi(t *testing.T) {
8686

8787
#### JSONPath
8888

89-
For asserting on parts of the response body JSONPath may be used. A separate module must be installed which provides these assertions - `go get -u github.com/go-spectest/spectest/jsonpath`. This is packaged separately to keep this library dependency free.
89+
For asserting on parts of the response body JSONPath may be used. A separate module must be installed which provides these assertions - `go get -u github.com/nao1215/spectest/jsonpath`. This is packaged separately to keep this library dependency free.
9090

9191
Given the response is `{"a": 12345, "b": [{"key": "c", "value": "result"}]}`
9292

css-selector/selector_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"testing"
77

88
"github.com/PuerkitoBio/goquery"
9-
"github.com/go-spectest/spectest"
9+
"github.com/nao1215/spectest"
1010

11-
selector "github.com/go-spectest/spectest/css-selector"
11+
selector "github.com/nao1215/spectest/css-selector"
1212
)
1313

1414
func TestTextExists(t *testing.T) {

diagram.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"strconv"
1414
"strings"
1515

16-
md "github.com/go-spectest/markdown"
17-
"github.com/go-spectest/mermaid/sequence"
16+
md "github.com/nao1215/markdown"
17+
"github.com/nao1215/mermaid/sequence"
1818
)
1919

2020
type (

doc/README_css-selector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# css-selector
22

3-
Assertions for [spectest](https://github.com/go-spectest/spectest) using css selectors.
3+
Assertions for [spectest](https://github.com/nao1215/spectest) using css selectors.
44

55
## Examples
66

doc/README_jsonpath.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jsonpath
22

3-
This library provides jsonpath assertions for [spectest](https://github.com/go-spectest/spectest).
3+
This library provides jsonpath assertions for [spectest](https://github.com/nao1215/spectest).
44

55
## Supported OS
66
- Linux
@@ -10,7 +10,7 @@ This library provides jsonpath assertions for [spectest](https://github.com/go-s
1010
## Installation
1111

1212
```bash
13-
go get -u github.com/go-spectest/spectest
13+
go get -u github.com/nao1215/spectest
1414
```
1515

1616
## Examples

doc/README_plantuml.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# plantuml
2-
Formats the results of an [spectest](https://github.com/go-spectest/spectest) run as plant uml markup.
2+
Formats the results of an [spectest](https://github.com/nao1215/spectest) run as plant uml markup.
33

44
## Installation
55

66
```bash
7-
go get -u github.com/go-spectest/plantuml
7+
go get -u github.com/nao1215/plantuml
88
```
99

1010
## Example

doc/spectest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Use Cases of spectest
22
## Installation of spectest cli
33
```shell
4-
go install github.com/go-spectest/spectest/cmd/spectest@latest
4+
go install github.com/nao1215/spectest/cmd/spectest@latest
55
```
66

77
## User-friendly 'go test'
@@ -54,7 +54,7 @@ You execute the following command to generate an index file:
5454
spectest index docs --title "naraku api result"
5555
```
5656

57-
[Output](https://github.com/go-spectest/naraku/blob/main/docs/index.md):
57+
[Output](https://github.com/nao1215/naraku/blob/main/docs/index.md):
5858
![index_result](./image/index.png)
5959

6060

example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path/filepath"
1212
"testing"
1313

14-
"github.com/go-spectest/spectest"
14+
"github.com/nao1215/spectest"
1515
)
1616

1717
func TestExample(t *testing.T) {

examples/echo/api_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"net/http"
55
"testing"
66

7-
"github.com/go-spectest/spectest"
8-
"github.com/go-spectest/spectest/jsonpath"
7+
"github.com/nao1215/spectest"
8+
"github.com/nao1215/spectest/jsonpath"
99
)
1010

1111
func TestGetUserCookieMatching(t *testing.T) {

examples/echo/go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
module github.com/go-spectest/spectest/examples/echo
1+
module github.com/nao1215/spectest/examples/echo
22

33
go 1.18
44

55
require (
6-
github.com/go-spectest/spectest v0.0.18
6+
github.com/nao1215/spectest v0.0.18
77
github.com/labstack/echo v3.3.10+incompatible
88
)
99

1010
require (
1111
github.com/PaesslerAG/gval v1.0.0 // indirect
1212
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
1313
github.com/davecgh/go-spew v1.1.1 // indirect
14-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
15-
github.com/go-spectest/markdown v0.0.7 // indirect
16-
github.com/go-spectest/mermaid v0.0.1 // indirect
14+
github.com/nao1215/diff v0.0.1 // indirect
15+
github.com/nao1215/markdown v0.0.7 // indirect
16+
github.com/nao1215/mermaid v0.0.1 // indirect
1717
github.com/karrick/godirwalk v1.17.0 // indirect
1818
github.com/labstack/gommon v0.4.0 // indirect
1919
github.com/mattn/go-colorable v0.1.13 // indirect

examples/echo/go.sum

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ github.com/PaesslerAG/jsonpath v0.1.1/go.mod h1:lVboNxFGal/VwW6d9JzIy56bUsYAP6tH
66
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
77
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
88
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
9-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
10-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
11-
github.com/go-spectest/markdown v0.0.7 h1:Pr+A/YBCtEruReeMMzBKQ4ftvNtlWuaiWRqgNaETA8Q=
12-
github.com/go-spectest/markdown v0.0.7/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
13-
github.com/go-spectest/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
14-
github.com/go-spectest/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
15-
github.com/go-spectest/spectest v0.0.18 h1:ni/m9HQJpnt2OhOMk0iKwR3PcxVVm57bycvCePJj+Uk=
16-
github.com/go-spectest/spectest v0.0.18/go.mod h1:uJr62Wbe6+vJ4xepfId8aodSOulwOl6Y1ikRJbKhWdE=
9+
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
10+
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
11+
github.com/nao1215/markdown v0.0.7 h1:Pr+A/YBCtEruReeMMzBKQ4ftvNtlWuaiWRqgNaETA8Q=
12+
github.com/nao1215/markdown v0.0.7/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
13+
github.com/nao1215/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
14+
github.com/nao1215/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
15+
github.com/nao1215/spectest v0.0.18 h1:ni/m9HQJpnt2OhOMk0iKwR3PcxVVm57bycvCePJj+Uk=
16+
github.com/nao1215/spectest v0.0.18/go.mod h1:uJr62Wbe6+vJ4xepfId8aodSOulwOl6Y1ikRJbKhWdE=
1717
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1818
github.com/karrick/godirwalk v1.17.0 h1:b4kY7nqDdioR/6qnbHQyDvmA17u5G1cZ6J+CZXwSWoI=
1919
github.com/karrick/godirwalk v1.17.0/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk=

examples/fiber/api_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/http"
66
"testing"
77

8-
"github.com/go-spectest/spectest"
9-
"github.com/go-spectest/spectest/jsonpath"
8+
"github.com/nao1215/spectest"
9+
"github.com/nao1215/spectest/jsonpath"
1010
"github.com/gofiber/fiber/v2"
1111
)
1212

examples/fiber/go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/go-spectest/spectest/examples/fiber
1+
module github.com/nao1215/spectest/examples/fiber
22

33
go 1.18
44

55
require (
6-
github.com/go-spectest/spectest v0.0.15
6+
github.com/nao1215/spectest v0.0.15
77
github.com/gofiber/fiber/v2 v2.52.4
88
)
99

@@ -12,9 +12,9 @@ require (
1212
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
1313
github.com/andybalholm/brotli v1.0.5 // indirect
1414
github.com/davecgh/go-spew v1.1.1 // indirect
15-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
16-
github.com/go-spectest/markdown v0.0.6 // indirect
17-
github.com/go-spectest/mermaid v0.0.1 // indirect
15+
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
16+
github.com/nao1215/markdown v0.0.6 // indirect
17+
github.com/nao1215/mermaid v0.0.1 // indirect
1818
github.com/google/uuid v1.5.0 // indirect
1919
github.com/karrick/godirwalk v1.17.0 // indirect
2020
github.com/klauspost/compress v1.17.0 // indirect

examples/fiber/go.sum

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/
77
github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
88
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
99
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
10-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
11-
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
12-
github.com/go-spectest/markdown v0.0.6 h1:S1KBMTYLwaF+gscqdG2XU4ne0axqAWDuFuGrOOv2a80=
13-
github.com/go-spectest/markdown v0.0.6/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
14-
github.com/go-spectest/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
15-
github.com/go-spectest/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
16-
github.com/go-spectest/spectest v0.0.15 h1:eSKPVVjnD+gNYOxZ8vfV3B7gR/e3yi6/kc9lqQddNFs=
17-
github.com/go-spectest/spectest v0.0.15/go.mod h1:fgAZM8EeVPEE5/dIS0AHY9SPzy5IYVu+ZxLZXstqA1U=
10+
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
11+
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
12+
github.com/nao1215/markdown v0.0.6 h1:S1KBMTYLwaF+gscqdG2XU4ne0axqAWDuFuGrOOv2a80=
13+
github.com/nao1215/markdown v0.0.6/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
14+
github.com/nao1215/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
15+
github.com/nao1215/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
16+
github.com/nao1215/spectest v0.0.15 h1:eSKPVVjnD+gNYOxZ8vfV3B7gR/e3yi6/kc9lqQddNFs=
17+
github.com/nao1215/spectest v0.0.15/go.mod h1:fgAZM8EeVPEE5/dIS0AHY9SPzy5IYVu+ZxLZXstqA1U=
1818
github.com/gofiber/fiber/v2 v2.52.4 h1:P+T+4iK7VaqUsq2PALYEfBBo6bJZ4q3FP8cZ84EggTM=
1919
github.com/gofiber/fiber/v2 v2.52.4/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ=
2020
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=

0 commit comments

Comments
 (0)