fix(version): fix version

This commit is contained in:
SoXX 2024-09-01 19:09:40 +02:00
parent bb85c18c6f
commit 4d0d521c66
7 changed files with 15 additions and 15 deletions

View File

@ -2,24 +2,18 @@
<configuration default="false" name="Generate Code" type="SwaggerCodegen" editBeforeRun="true" show_console_on_std_err="false" show_console_on_std_out="false">
<option name="allowRunningInParallel" value="false" />
<option name="customTemplatesPath" value="" />
<option name="envs">
<map />
</option>
<option name="generateToPath" value="C:\Users\SoXX\GolandProjects\anthrove\orchestrator-swagger-go-client" />
<option name="generateToPath" value="E:\Anthrove\orchestrator-swagger-go-client" />
<option name="generationParameters">
<list />
</option>
<option name="generatorType" value="OPENAPI_GENERATOR_V6" />
<option name="jdkPath" value="C:\Users\SoXX\AppData\Local\Programs\GoLand\jbr\bin\java.exe" />
<option name="language" value="go" />
<option name="passParentEnvs" value="true" />
<option name="programParameters" />
<option name="projectPathOnTarget" />
<option name="selectedOptions">
<list />
</option>
<option name="specificationPath" value="C:\Users\SoXX\GolandProjects\anthrove\orchestrator\docs\swagger.yaml" />
<option name="workingDirectory" value="C:\Users\SoXX\GolandProjects\anthrove\orchestrator\docs" />
<option name="specificationPath" value="E:\Anthrove\orchestrator\docs\swagger.json" />
<method v="2" />
</configuration>
</component>

View File

@ -1,5 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CommitMessageInspectionProfile">
<profile version="1.0">
<inspection_tool class="CommitFormat" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="CommitNamingConvention" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>

View File

@ -23,7 +23,7 @@ go get golang.org/x/net/context
Put the package under your project folder and add the following in import:
```golang
import openapi "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
import openapi "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
```
To use a proxy, set the environment variable `HTTP_PROXY`:

View File

@ -27,7 +27,7 @@ import (
"context"
"fmt"
"os"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
)
func main() {
@ -97,7 +97,7 @@ import (
"context"
"fmt"
"os"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
)
func main() {
@ -168,7 +168,7 @@ import (
"context"
"fmt"
"os"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
)
func main() {

2
go.mod
View File

@ -1,4 +1,4 @@
module git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1
module git.anthrove.art/Anthrove/orchestrator-swagger-go-client
go 1.13

View File

@ -11,7 +11,7 @@ package openapi
import (
"context"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"

View File

@ -11,7 +11,7 @@ package openapi
import (
"context"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1"
openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"