-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
33 lines (22 loc) · 1.13 KB
/
go.mod
File metadata and controls
33 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module github.com/goforj/queue/examples
go 1.24.4
require (
github.com/goforj/queue v0.0.0
github.com/goforj/queue/driver/mysqlqueue v0.0.0
github.com/goforj/queue/driver/natsqueue v0.0.0
github.com/goforj/queue/driver/postgresqueue v0.0.0
github.com/goforj/queue/driver/rabbitmqqueue v0.0.0
github.com/goforj/queue/driver/redisqueue v0.0.0
github.com/goforj/queue/driver/sqlitequeue v0.0.0
github.com/goforj/queue/driver/sqlqueuecore v0.0.0
github.com/goforj/queue/driver/sqsqueue v0.0.0
)
replace github.com/goforj/queue => ..
replace github.com/goforj/queue/driver/redisqueue => ../driver/redisqueue
replace github.com/goforj/queue/driver/sqlqueuecore => ../driver/sqlqueuecore
replace github.com/goforj/queue/driver/mysqlqueue => ../driver/mysqlqueue
replace github.com/goforj/queue/driver/postgresqueue => ../driver/postgresqueue
replace github.com/goforj/queue/driver/sqlitequeue => ../driver/sqlitequeue
replace github.com/goforj/queue/driver/natsqueue => ../driver/natsqueue
replace github.com/goforj/queue/driver/sqsqueue => ../driver/sqsqueue
replace github.com/goforj/queue/driver/rabbitmqqueue => ../driver/rabbitmqqueue