We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38f34c commit 8d9d16dCopy full SHA for 8d9d16d
1 file changed
README.md
@@ -163,6 +163,10 @@ func UserRowsMapper(rows *sql.Rows) interface{} {
163
go build datasource/datasource.go
164
go build mapper/rowsmapper.go
165
go build template/gdbcTemplate.go
166
+
167
+# or
168
169
+go build ./...
170
```
171
172
### run test
@@ -221,14 +225,19 @@ mockery -r -all
221
225
1. remove dependency on github.com/guoapeng/props to only rely on sql.datasource
222
226
2. support sqlite
223
227
224
-
228
## trouble shooting
229
230
1. cannot find module
231
in case you encountered the issue:
232
233
+```bash
234
$ go build
235
build .: cannot find module for path .
236
+```
237
238
solution:
239
replace the go build command like
-$ go build mapper/rowsmapper.go
240
241
242
+go build mapper/rowsmapper.go
243
0 commit comments