mirror of
https://github.com/therootcompany/golib.git
synced 2026-04-24 04:38:02 +00:00
Replace directives pointing to local paths prevent `go install` from
working. Use published module versions (sqlmigrate v1.0.2, shmigrate
v1.0.2) so users can install with:
go install github.com/therootcompany/golib/cmd/sql-migrate/v2@latest
9 lines
212 B
Modula-2
9 lines
212 B
Modula-2
module github.com/therootcompany/golib/cmd/sql-migrate/v2
|
|
|
|
go 1.26.1
|
|
|
|
require (
|
|
github.com/therootcompany/golib/database/sqlmigrate v1.0.2
|
|
github.com/therootcompany/golib/database/sqlmigrate/shmigrate v1.0.2
|
|
)
|