Skip to content

Commit b37bb91

Browse files
committed
test2
1 parent f50d36b commit b37bb91

File tree

31 files changed

+42
-34
lines changed

31 files changed

+42
-34
lines changed

.golangci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ linters-settings:
6969
- standard # Standard section: captures all standard packages.
7070
- default # Default section: contains all imports that could not be matched to another section type.
7171
- prefix(github.com/ydb-platform/ydb-go-sdk/v3) # Custom section: groups all imports with the specified Prefix.
72-
- blank # Blank section: contains all blank imports. This section is not present unless explicitly enabled.
73-
- dot # Dot section: contains all dot imports. This section is not present unless explicitly enabled.
7472
skip-generated: true
7573
goconst:
7674
# minimal length of string constant, 3 by default

examples/auth/environ/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"os"
77

88
environ "github.com/ydb-platform/ydb-go-sdk-auth-environ"
9+
910
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
1011
)
1112

examples/auth/metadata_credentials/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import (
66
"fmt"
77
"os"
88

9-
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
109
yc "github.com/ydb-platform/ydb-go-yc"
10+
11+
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
1112
)
1213

1314
var dsn string

examples/auth/service_account_credentials/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import (
66
"fmt"
77
"os"
88

9-
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
109
yc "github.com/ydb-platform/ydb-go-yc"
10+
11+
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
1112
)
1213

1314
var (

examples/basic/database_sql/data.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"time"
99

1010
"github.com/google/uuid"
11+
1112
"github.com/ydb-platform/ydb-go-sdk/v3/table/types"
1213
)
1314

examples/basic/database_sql/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"time"
1010

1111
environ "github.com/ydb-platform/ydb-go-sdk-auth-environ"
12+
1213
"github.com/ydb-platform/ydb-go-sdk/v3"
1314
"github.com/ydb-platform/ydb-go-sdk/v3/sugar"
1415
)

examples/basic/native/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"time"
99

1010
environ "github.com/ydb-platform/ydb-go-sdk-auth-environ"
11+
1112
"github.com/ydb-platform/ydb-go-sdk/v3"
1213
"github.com/ydb-platform/ydb-go-sdk/v3/sugar"
1314
)

examples/basic/xorm/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import (
66
"os"
77
"time"
88

9+
_ "github.com/lib/pq"
10+
_ "modernc.org/sqlite"
911
"xorm.io/builder"
1012
"xorm.io/xorm"
1113
xormLog "xorm.io/xorm/log"
1214

13-
_ "github.com/lib/pq"
1415
_ "github.com/ydb-platform/ydb-go-sdk/v3"
15-
_ "modernc.org/sqlite"
1616
)
1717

1818
var envNotFoundMessage = `DSN environment variable not defined

examples/ddl/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"path"
99

1010
environ "github.com/ydb-platform/ydb-go-sdk-auth-environ"
11+
1112
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
1213
)
1314

examples/decimal/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"path"
1010

1111
environ "github.com/ydb-platform/ydb-go-sdk-auth-environ"
12+
1213
ydb "github.com/ydb-platform/ydb-go-sdk/v3"
1314
"github.com/ydb-platform/ydb-go-sdk/v3/table"
1415
"github.com/ydb-platform/ydb-go-sdk/v3/table/options"

0 commit comments

Comments
 (0)