Skip to content

Commit

Permalink
build(sqlbuilder): Move internal/db/sqlbuilder to external module
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamSLevy committed Nov 26, 2019
1 parent e84b1aa commit a2dac6b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 129 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.13
require (
crawshaw.io/sqlite v0.1.3-0.20190520153332-66f853b01dfb
github.com/AdamSLevy/jsonrpc2/v13 v13.0.1
github.com/AdamSLevy/sqlbuilder v0.0.0-20191126201320-5b1948d48973
github.com/AdamSLevy/sqlitechangeset v0.0.0-20190925183646-3ddb70fb709d
github.com/Factom-Asset-Tokens/base58 v0.0.0-20191118025050-4fa02e92ec20 // indirect
github.com/Factom-Asset-Tokens/factom v0.0.0-20191120022136-7bf60a31a324
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ github.com/AdamSLevy/jsonrpc2/v13 v13.0.1 h1:hQ5rfCFBQrXQNtvP+2mtH6EmsUAEN61ZF1n
github.com/AdamSLevy/jsonrpc2/v13 v13.0.1/go.mod h1:8QsYqGKdPEim+n/j9KFTYB2tIj250f044Vxh2XRKhP4=
github.com/AdamSLevy/pflag v1.0.4 h1:oykgyxDWo391JRRNOLr892UzaK2SmLiAvza8OBLX24U=
github.com/AdamSLevy/pflag v1.0.4/go.mod h1:UeCxQpw/gAoTUVBfjr8n7qcGZZNmECgohVFOAdlRMtA=
github.com/AdamSLevy/sqlbuilder v0.0.0-20191126201320-5b1948d48973 h1:KjfVykzEEMk3oFZKpImENWPXEcffRUO4mEDHRh0RUiY=
github.com/AdamSLevy/sqlbuilder v0.0.0-20191126201320-5b1948d48973/go.mod h1:LbOIU3wIapyAARdNLVV8i/Dc/BMD9dcNtJ1F39vuO9Q=
github.com/AdamSLevy/sqlite v0.1.3-0.20191014215059-b98bb18889de h1:ehn7bnzDZt3ZTXLR5gn0p0NUUl50wZazoi41y7qNrGY=
github.com/AdamSLevy/sqlite v0.1.3-0.20191014215059-b98bb18889de/go.mod h1:igAO5JulrQ1DbdZdtVq48mnZUBAPOeFzer7VhDWNtW4=
github.com/AdamSLevy/sqlitechangeset v0.0.0-20190925183646-3ddb70fb709d h1:yPm4An70OhM4k4WUq7M9sWaVlFas2+hJB+I3Fsgw38A=
Expand Down
2 changes: 1 addition & 1 deletion internal/db/entries/entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import (

"crawshaw.io/sqlite"
"crawshaw.io/sqlite/sqlitex"
"github.com/AdamSLevy/sqlbuilder"
"github.com/Factom-Asset-Tokens/factom"
"github.com/Factom-Asset-Tokens/factom/fat1"
"github.com/Factom-Asset-Tokens/fatd/internal/db/sqlbuilder"
)

// CreateTable is a SQL string that creates the "entries" table.
Expand Down
2 changes: 1 addition & 1 deletion internal/db/nftokens/nftokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import (

"crawshaw.io/sqlite"
"crawshaw.io/sqlite/sqlitex"
"github.com/AdamSLevy/sqlbuilder"
"github.com/Factom-Asset-Tokens/factom"
"github.com/Factom-Asset-Tokens/factom/fat1"
"github.com/Factom-Asset-Tokens/fatd/internal/db/sqlbuilder"
)

// CreateTable is a SQL string that creates the "nf_tokens" table.
Expand Down
127 changes: 0 additions & 127 deletions internal/db/sqlbuilder/sqlbuilder.go

This file was deleted.

0 comments on commit a2dac6b

Please sign in to comment.