From f226bb72b41adfabf1c7924a5d6ec66389fee961 Mon Sep 17 00:00:00 2001 From: Sasha Melentyev Date: Tue, 1 Feb 2022 22:14:46 +0300 Subject: [PATCH] chore: change org name --- .github/workflows/build.yml | 2 +- LICENSE | 2 +- README.md | 24 ++++++++++++------------ example_test.go | 2 +- go.mod | 2 +- mediatype_test.go | 2 +- openapi_test.go | 2 +- parse_test.go | 2 +- schema_test.go | 2 +- 9 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b0ce29..a20fe46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,4 +8,4 @@ on: jobs: build: - uses: go-dummy/.github/.github/workflows/build.yml@main + uses: neotoolkit/.github/.github/workflows/build.yml@main diff --git a/LICENSE b/LICENSE index d23d48e..75f2640 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 go-dummy +Copyright (c) 2022 neotoolkit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d88bcfe..33311c5 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ OpenAPI specification object model ## Installation ```shell -go get github.com/go-dummy/openapi +go get github.com/neotoolkit/openapi ``` ## Usage @@ -28,21 +28,21 @@ See [these docs][pkg-url]. [MIT License](LICENSE). -[build-img]: https://github.com/go-dummy/openapi/workflows/build/badge.svg -[build-url]: https://github.com/go-dummy/openapi/actions -[pkg-img]: https://pkg.go.dev/badge/go-dummy/openapi -[pkg-url]: https://pkg.go.dev/github.com/go-dummy/openapi -[reportcard-img]: https://goreportcard.com/badge/go-dummy/openapi -[reportcard-url]: https://goreportcard.com/report/go-dummy/openapi -[coverage-img]: https://codecov.io/gh/go-dummy/openapi/branch/main/graph/badge.svg -[coverage-url]: https://codecov.io/gh/go-dummy/openapi -[version-img]: https://img.shields.io/github/v/release/go-dummy/openapi -[version-url]: https://github.com/go-dummy/openapi/releases +[build-img]: https://github.com/neotoolkit/openapi/workflows/build/badge.svg +[build-url]: https://github.com/neotoolkit/openapi/actions +[pkg-img]: https://pkg.go.dev/badge/neotoolkit/openapi +[pkg-url]: https://pkg.go.dev/github.com/neotoolkit/openapi +[reportcard-img]: https://goreportcard.com/badge/neotoolkit/openapi +[reportcard-url]: https://goreportcard.com/report/neotoolkit/openapi +[coverage-img]: https://codecov.io/gh/neotoolkit/openapi/branch/main/graph/badge.svg +[coverage-url]: https://codecov.io/gh/neotoolkit/openapi +[version-img]: https://img.shields.io/github/v/release/neotoolkit/openapi +[version-url]: https://github.com/neotoolkit/openapi/releases ## Sponsors

- Sponsored by Evrone

diff --git a/example_test.go b/example_test.go index 2c6a338..ad3f1cf 100644 --- a/example_test.go +++ b/example_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/go-dummy/openapi" + "github.com/neotoolkit/openapi" ) func TestExamples_GetKeys(t *testing.T) { diff --git a/go.mod b/go.mod index e0ffd18..1c5e577 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/go-dummy/openapi +module github.com/neotoolkit/openapi go 1.17 diff --git a/mediatype_test.go b/mediatype_test.go index cec6b0f..5a191c4 100644 --- a/mediatype_test.go +++ b/mediatype_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/go-dummy/openapi" + "github.com/neotoolkit/openapi" ) func TestMediaType_ResponseByExample(t *testing.T) { diff --git a/openapi_test.go b/openapi_test.go index b0f60d3..763c2d3 100644 --- a/openapi_test.go +++ b/openapi_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/go-dummy/openapi" + "github.com/neotoolkit/openapi" ) func TestSchemaError(t *testing.T) { diff --git a/parse_test.go b/parse_test.go index d609c32..f3e2493 100644 --- a/parse_test.go +++ b/parse_test.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "testing" - "github.com/go-dummy/openapi" + "github.com/neotoolkit/openapi" "github.com/stretchr/testify/require" ) diff --git a/schema_test.go b/schema_test.go index 7a248ff..aee6ca1 100644 --- a/schema_test.go +++ b/schema_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/go-dummy/openapi" + "github.com/neotoolkit/openapi" "github.com/stretchr/testify/require" )