Skip to content

Commit

Permalink
fix store imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash-rajur committed Oct 9, 2023
1 parent 46baf59 commit dbd39ec
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestConfig_Generate-mysql-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestConfig_Generate-pg-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestConfig_GenerateMysql-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestConfig_GeneratePg-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestSqlxGen_Generate-mysql-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/config/.snapshots/TestSqlxGen_Generate-pg-store
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/generate/.snapshots/TestGenerate_Generate-store.gen
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/generate/store/.snapshots/TestPackage_Generate
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package store

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down
3 changes: 3 additions & 0 deletions internal/generate/store/store.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package {{.PackageName}}

import (
"database/sql"
"database/sql/driver"
"encoding/json"
"fmt"
"regexp"

"github.com/jmoiron/sqlx"
Expand Down

0 comments on commit dbd39ec

Please sign in to comment.